Skip to content
Snippets Groups Projects
Commit b7a98cd4 authored by b2-wilton's avatar b2-wilton
Browse files

Merge branch 'brodybranch' into 'main'

Minor fixes from merge problems

See merge request !27
parents 6d6097c1 966f2d45
Branches
No related tags found
1 merge request!27Minor fixes from merge problems
......@@ -103,4 +103,4 @@ def payment_cancelled(request):
return render(request, 'payment_cancelled.html')
def payment_success(request):
return render(request,'payment_success.html')
\ No newline at end of file
return render(request,'payment_success.html')
......@@ -37,6 +37,7 @@ urlpatterns = [
path('logout/', LogoutView.as_view(), name='logout'),
path('register/', RegisterView.as_view(), name='register'),
path('user_logout/', auth_views.LogoutView.as_view(next_page='index'), name='user_logout'),
# Payment
path('payment/create/', create_payment, name='create_payment'),
path('payment/execute/', execute_payment, name='execute_payment'),
path('payment/cancel/', payment_cancelled, name='payment_cancelled'),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment