mirror of https://github.com/doccano/doccano.git
pythondatasetsactive-learningtext-annotationdatasetnatural-language-processingdata-labelingmachine-learningannotation-tool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
65 lines
1.5 KiB
65 lines
1.5 KiB
from django.urls import include, path
|
|
|
|
from .views import comment, example, example_state, health, project, tag, task
|
|
|
|
urlpatterns_project = [
|
|
path(
|
|
route='examples',
|
|
view=example.ExampleList.as_view(),
|
|
name='example_list'
|
|
),
|
|
path(
|
|
route='examples/<int:example_id>',
|
|
view=example.ExampleDetail.as_view(),
|
|
name='example_detail'
|
|
),
|
|
path(
|
|
route='tags',
|
|
view=tag.TagList.as_view(),
|
|
name='tag_list'
|
|
),
|
|
path(
|
|
route='tags/<int:tag_id>',
|
|
view=tag.TagDetail.as_view(),
|
|
name='tag_detail'
|
|
),
|
|
path(
|
|
route='comments',
|
|
view=comment.CommentList.as_view(),
|
|
name='comment_list'
|
|
),
|
|
path(
|
|
route='comments/<int:comment_id>',
|
|
view=comment.CommentDetail.as_view(),
|
|
name='comment_detail'
|
|
),
|
|
path(
|
|
route='examples/<int:example_id>/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/<task_id>',
|
|
view=task.TaskStatus.as_view(),
|
|
name='task_status'
|
|
),
|
|
path(
|
|
route='projects/<int:project_id>',
|
|
view=project.ProjectDetail.as_view(),
|
|
name='project_detail'
|
|
),
|
|
path('projects/<int:project_id>/', include(urlpatterns_project))
|
|
]
|