mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-04 00:52:49 +00:00
12 lines
440 B
Python
12 lines
440 B
Python
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
app_name = 'logs'
|
|
urlpatterns = [
|
|
url(r'^$', views.index, name='index'),
|
|
url(r'^revert_action/(?P<revision_id>[0-9]+)$', views.revert_action, name='revert-action'),
|
|
url(r'^stats_models/$', views.stats_models, name='stats-models'),
|
|
url(r'^stats_users/$', views.stats_users, name='stats-users'),
|
|
url(r'^stats_actions/$', views.stats_actions, name='stats-actions'),
|
|
]
|