Skip to content

Roadmap

Accessing Roadmap from Admin

Once the server is running, Roadmap Tasks and categories can be accessed at:

BASE_URL/admin/roadmap

Model Overview

1.RoadmapCategory Model:

This model represents categories that group tasks together.

Fields:

  • Title: The name of the category (e.g., ‘To-Do’, ‘Completed’).

Roadmap

2.RoadmapTask Model

This model represents individual tasks in the roadmap.

Fields:

  • Category: Foreign key linking the task to its category.
  • Title: The title or name of the task.
  • Description: The details of the task (e.g., ‘Working on…’).