19 lines
440 B
Python
19 lines
440 B
Python
from django.urls import path, reverse_lazy
|
|
|
|
from promotion import views
|
|
|
|
|
|
app_name = 'promotion'
|
|
|
|
|
|
urlpatterns = [
|
|
path('', views.PromotionView.as_view(),
|
|
name="show_promotion"),
|
|
path('select_wallet', views.SelectWalletView.as_view(),
|
|
name="select_wallet"),
|
|
path('contract', views.ContractView.as_view(),
|
|
name="contract"),
|
|
path('contract/1', views.ThanksView.as_view(),
|
|
name="thanks"),
|
|
]
|