from django.urls import include, path from .views import (annotation, comment, example, example_state, health, label, project, tag, task) from .views.tasks import category, relation, span, text urlpatterns_project = [ path( route='category-types', view=label.CategoryTypeList.as_view(), name='category_types' ), path( route='category-types/', view=label.CategoryTypeDetail.as_view(), name='category_type' ), path( route='span-types', view=label.SpanTypeList.as_view(), name='span_types' ), path( route='span-types/', view=label.SpanTypeDetail.as_view(), name='span_type' ), path( route='category-type-upload', view=label.CategoryTypeUploadAPI.as_view(), name='category_type_upload' ), path( route='span-type-upload', view=label.SpanTypeUploadAPI.as_view(), name='span_type_upload' ), path( route='examples', view=example.ExampleList.as_view(), name='example_list' ), path( route='examples/', view=example.ExampleDetail.as_view(), name='example_detail' ), path( route='relation_types', view=label.RelationTypeList.as_view(), name='relation_types_list' ), path( route='relation_type-upload', view=label.RelationTypeUploadAPI.as_view(), name='relation_type-upload' ), path( route='relation_types/', view=label.RelationTypeDetail.as_view(), name='relation_type_detail' ), path( route='annotation_relations', view=relation.RelationList.as_view(), name='relation_types_list' ), path( route='annotation_relation-upload', view=relation.RelationUploadAPI.as_view(), name='annotation_relation-upload' ), path( route='annotation_relations/', view=relation.RelationDetail.as_view(), name='annotation_relation_detail' ), path( route='approval/', view=annotation.ApprovalAPI.as_view(), name='approve_labels' ), path( route='examples//categories', view=category.CategoryListAPI.as_view(), name='category_list' ), path( route='examples//categories/', view=category.CategoryDetailAPI.as_view(), name='category_detail' ), path( route='examples//spans', view=span.SpanListAPI.as_view(), name='span_list' ), path( route='examples//spans/', view=span.SpanDetailAPI.as_view(), name='span_detail' ), path( route='examples//texts', view=text.TextLabelListAPI.as_view(), name='text_list' ), path( route='examples//texts/', view=text.TextLabelDetailAPI.as_view(), name='text_detail' ), path( route='tags', view=tag.TagList.as_view(), name='tag_list' ), path( route='tags/', view=tag.TagDetail.as_view(), name='tag_detail' ), path( route='examples//comments', view=comment.CommentListDoc.as_view(), name='comment_list_doc' ), path( route='comments', view=comment.CommentListProject.as_view(), name='comment_list_project' ), path( route='examples//comments/', view=comment.CommentDetail.as_view(), name='comment_detail' ), path( route='examples//states', view=example_state.ExampleStateList.as_view(), name='example_state_list' ), ] urlpatterns = [ path( route='health', view=health.Health.as_view(), name='health' ), path( route='projects', view=project.ProjectList.as_view(), name='project_list' ), path( route='tasks/status/', view=task.TaskStatus.as_view(), name='task_status' ), path( route='projects/', view=project.ProjectDetail.as_view(), name='project_detail' ), path('projects//', include(urlpatterns_project)) ]