Views#

class task_management.views.BoardCreateView(**kwargs)[source]#

View for creating a new board.

Renders a form to create a new board.

form_class#

alias of BoardForm

model#

alias of Board

class task_management.views.BoardDeleteView(**kwargs)[source]#

View for deleting a board.

Renders a confirmation page to delete an existing board.

model#

alias of Board

class task_management.views.BoardDetailView(**kwargs)[source]#

View for displaying details of a board.

Displays details of a specific board along with its linked lists.

model#

alias of Board

class task_management.views.BoardListCreateView(**kwargs)[source]#

View for creating a new list within a board.

Renders a form to create a new list associated with a specific board.

form_class#

alias of ListForm

get_initial()[source]#

Return the initial data to use for forms on this view.

model#

alias of List

class task_management.views.BoardListView(**kwargs)[source]#

View for listing all boards.

Displays a list of all boards available in the system.

model#

alias of Board

class task_management.views.BoardUpdateView(**kwargs)[source]#

View for updating a board.

Renders a form to update an existing board.

form_class#

alias of BoardForm

model#

alias of Board

class task_management.views.ListCreateView(**kwargs)[source]#

View for creating a new list.

Renders a form to create a new list.

form_class#

alias of ListForm

model#

alias of List

class task_management.views.ListDeleteView(**kwargs)[source]#

View for deleting a list.

Renders a confirmation page to delete an existing list.

model#

alias of List

class task_management.views.ListDetailView(**kwargs)[source]#

View for displaying details of a list.

Displays details of a specific list along with its linked tasks.

model#

alias of List

class task_management.views.ListListView(**kwargs)[source]#

View for listing all lists.

Displays a list of all lists available in the system.

model#

alias of List

class task_management.views.ListTaskCreateView(**kwargs)[source]#

View for creating a new task within a list.

Renders a form to create a new task associated with a specific list.

form_class#

alias of TaskForm

get_initial()[source]#

Return the initial data to use for forms on this view.

model#

alias of Task

class task_management.views.ListUpdateView(**kwargs)[source]#

View for updating a list.

Renders a form to update an existing list.

form_class#

alias of ListForm

model#

alias of List

class task_management.views.TaskCreateView(**kwargs)[source]#

View for creating a new task.

Renders a form to create a new task.

form_class#

alias of TaskForm

model#

alias of Task

class task_management.views.TaskDeleteView(**kwargs)[source]#

View for deleting a task.

Renders a confirmation page to delete an existing task.

model#

alias of Task

class task_management.views.TaskDetailView(**kwargs)[source]#

View for displaying details of a task.

Displays details of a specific task along with its assigned user (if any).

model#

alias of Task

class task_management.views.TaskListView(**kwargs)[source]#

View for listing all tasks.

Displays a list of all tasks available in the system.

model#

alias of Task

class task_management.views.TaskUpdateView(**kwargs)[source]#

View for updating a task.

Renders a form to update an existing task.

form_class#

alias of TaskForm

model#

alias of Task