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.
13 lines
409 B
Python
13 lines
409 B
Python
from django.conf.urls import include, url
|
|
from django.contrib import admin
|
|
from django.urls import path
|
|
from django.views.generic import TemplateView
|
|
|
|
urlpatterns = [
|
|
url(r'^api/', include('django_etebase.urls')),
|
|
url(r'^admin/', admin.site.urls),
|
|
url(r'^api-auth/', include('rest_framework.urls', namespace='rest_framework')),
|
|
|
|
path('', TemplateView.as_view(template_name='success.html')),
|
|
]
|