We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 78bb1ad commit 6cc46e7Copy full SHA for 6cc46e7
payment_gateway/urls.py
@@ -16,8 +16,10 @@
16
"""
17
from django.contrib import admin
18
from django.urls import path, include
19
+from django.views.generic import TemplateView
20
21
urlpatterns = [
22
path('admin/', admin.site.urls),
23
path('api/', include('payments.urls')),
24
+ path('', TemplateView.as_view(template_name='index.html'), name='index'),
25
]
0 commit comments