mirror of
https://github.com/pacnpal/thrillwiki_django_no_react.git
synced 2025-12-20 15:11:09 -05:00
22 lines
686 B
Python
22 lines
686 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'history'
|
|
|
|
urlpatterns = [
|
|
# Main VCS interface
|
|
path('vcs/', views.VersionControlPanel.as_view(), name='vcs-panel'),
|
|
|
|
# Branch operations
|
|
path('vcs/branches/', views.BranchListView.as_view(), name='branch-list'),
|
|
path('vcs/branches/create/', views.BranchCreateView.as_view(), name='branch-create'),
|
|
|
|
# History views
|
|
path('vcs/history/', views.HistoryView.as_view(), name='history-view'),
|
|
|
|
# Merge operations
|
|
path('vcs/merge/', views.MergeView.as_view(), name='merge-view'),
|
|
|
|
# Tag operations
|
|
path('vcs/tags/create/', views.TagCreateView.as_view(), name='tag-create'),
|
|
] |