mirror of https://gitlab.federez.net/re2o/re2o
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.
11 lines
422 B
11 lines
422 B
from django.conf.urls import url
|
|
|
|
from . import views
|
|
|
|
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'),
|
|
]
|
|
|