from django.urls import path
from django.views.generic import TemplateView

app_name = 'tasks'

urlpatterns = [
	path(
		'',
		TemplateView.as_view(
			template_name='shared/section_placeholder.html',
			extra_context={
				'section_title': 'Tasks',
				'section_description': 'Le module de gestion des taches sera branche ici.',
			},
		),
		name='tasks_list',
	),
]
