1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
1# Society Self-Service
2# Copyright © 2018 Yingtong Li (RunasSudo)
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <https://www.gnu.org/licenses/>.
16
17from django.urls import path
18
19from . import views
20
21urlpatterns = [
22 path('budgets/', views.budget_list, name='budget_list'),
23 path('budgets/new/', views.budget_new, name='budget_new'),
24 path('budgets/view/<int:id>', views.budget_view, name='budget_view'),
25 path('budgets/view/<int:id>/print', views.budget_print, name='budget_print'),
26 path('budgets/edit/<int:id>', views.budget_edit, name='budget_edit'),
27 path('budgets/action/<int:id>', views.budget_action, name='budget_action'),
28 path('claims/', views.claim_list, name='claim_list'),
29 path('claims/new/', views.claim_new, name='claim_new'),
30 path('claims/view/<int:id>', views.claim_view, name='claim_view'),
31 path('claims/view/<int:id>/print', views.claim_print, name='claim_print'),
32 path('claims/edit/<int:id>', views.claim_edit, name='claim_edit'),
33 path('claims/action/<int:id>', views.claim_action, name='claim_action'),
34 path('claims/processing', views.claim_processing, name='claim_processing'),
35 path('', views.index, name='treasury'),
36]
|