complete first version of main proccess
This commit is contained in:
parent
6ff4740d04
commit
f2fc2362a7
61 changed files with 3280 additions and 28 deletions
11
certificates/urls.py
Normal file
11
certificates/urls.py
Normal file
|
@ -0,0 +1,11 @@
|
|||
from django.urls import path
|
||||
from . import views
|
||||
|
||||
app_name = 'certificates'
|
||||
|
||||
urlpatterns = [
|
||||
path('instance/<int:instance_id>/step/<int:step_id>/', views.certificate_step, name='certificate_step'),
|
||||
path('instance/<int:instance_id>/print/', views.certificate_print, name='certificate_print'),
|
||||
]
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue