Private
Public Access
1
0

adding simple power form

This commit is contained in:
Sander Roosendaal
2022-12-16 08:18:13 +01:00
parent 47d8dd63d3
commit 57fe6413e6
5 changed files with 80 additions and 1 deletions

View File

@@ -782,10 +782,14 @@ urlpatterns = [
views.rower_edit_view, name='rower_edit_view'),
re_path(r'^me/preferences/$', views.rower_prefs_view,
name='rower_prefs_view'),
re_path(r'^me/prefs/$', views.rower_simpleprefs_view,
name='rower_simpleprefs_view'),
re_path(r'^me/transactions/$', views.transactions_view,
name='transactions_view'),
re_path(r'^me/preferences/user/(?P<userid>\d+)/$',
views.rower_prefs_view, name='rower_prefs_view'),
re_path(r'^me/prefs/user/(?P<userid>\d+)/$',
views.rower_simpleprefs_view, name='rower_simpleprefs_view'),
re_path(r'^me/edit/(.+.*)/$', views.rower_edit_view, name='rower_edit_view'),
re_path(r'^me/c2authorize/$', views.rower_c2_authorize,
name='rower_c2_authorize'),