Page MenuHomeGRNET

urls.py
No OneTemporary

File Metadata

Created
Sun, Mar 22, 5:22 AM
from django.contrib import admin
from django.conf.urls import include, url
from django.views.generic import TemplateView
from . import views
admin.autodiscover()
urlpatterns = [
url(r'^$', views.DemoView.as_view(template_name="index.html"), {},
name="index"),
url(r'^success/$', TemplateView.as_view(template_name="success.html"), {},
name="success"),
# Uncomment the next line to enable the admin:
url(r'^admin/', include(admin.site.urls)),
]

Event Timeline