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.
17 lines
492 B
Python
17 lines
492 B
Python
from django.conf import settings
|
|
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),
|
|
path("", TemplateView.as_view(template_name="success.html")),
|
|
]
|
|
|
|
if settings.DEBUG:
|
|
urlpatterns += [
|
|
url(r"^api-auth/", include("rest_framework.urls", namespace="rest_framework")),
|
|
]
|