gwift_old/gwift/urls.py

27 lines
832 B
Python
Raw Normal View History

2015-12-21 21:44:29 +01:00
# gwift/urls.py
2015-09-30 10:33:59 +02:00
"""gwift URL Configuration
The `urlpatterns` list routes URLs to views. For more information please see:
https://docs.djangoproject.com/en/1.8/topics/http/urls/
Examples:
Function views
1. Add an import: from my_app import views
2. Add a URL to urlpatterns: url(r'^$', views.home, name='home')
Class-based views
1. Add an import: from other_app.views import Home
2. Add a URL to urlpatterns: url(r'^$', Home.as_view(), name='home')
Including another URLconf
1. Add an import: from blog import urls as blog_urls
2. Add a URL to urlpatterns: url(r'^blog/', include(blog_urls))
"""
from django.conf.urls import include
from django.urls import path
2015-09-30 10:33:59 +02:00
from django.contrib import admin
2015-12-21 21:44:29 +01:00
2015-09-30 10:33:59 +02:00
urlpatterns = [
path(r'^admin/', admin.site.urls),
path(r'^', include('gwift.wish.urls'))
2015-09-30 10:33:59 +02:00
]