You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
359 B
Python
14 lines
359 B
Python
4 years ago
|
import os
|
||
|
|
||
4 years ago
|
from django.conf import settings
|
||
4 years ago
|
from django.contrib import admin
|
||
3 years ago
|
from django.urls import path
|
||
4 years ago
|
from django.views.generic import TemplateView
|
||
4 years ago
|
from django.views.static import serve
|
||
|
from django.contrib.staticfiles import finders
|
||
4 years ago
|
|
||
|
urlpatterns = [
|
||
3 years ago
|
path("admin/", admin.site.urls),
|
||
4 years ago
|
path("", TemplateView.as_view(template_name="success.html")),
|
||
4 years ago
|
]
|