Compare commits
No commits in common. "e1cf597f05ad9f247fc6f7bacc7cdd51caf6a9da" and "2a2cb5f92e32fbbc09fba8290252cf8c5440902b" have entirely different histories.
e1cf597f05
...
2a2cb5f92e
|
@ -1,5 +0,0 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}Error – {{ APP_TITLE }}{% endblock %}
|
|
@ -1,5 +0,0 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}Error – {{ APP_TITLE }}{% endblock %}
|
|
@ -1,5 +0,0 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}Not Found – {{ APP_TITLE }}{% endblock %}
|
|
@ -1,5 +0,0 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
|
||||
{% block title %}Error – {{ APP_TITLE }}{% endblock %}
|
|
@ -1,7 +0,0 @@
|
|||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("", views.index, name="index"),
|
||||
]
|
|
@ -1,5 +1,3 @@
|
|||
from django.shortcuts import render
|
||||
|
||||
|
||||
def index(request):
|
||||
return render(request, "base.html", {})
|
||||
# Create your views here.
|
||||
|
|
|
@ -18,7 +18,6 @@ from django.contrib import admin
|
|||
from django.urls import include, path
|
||||
|
||||
urlpatterns = [
|
||||
path("", include("ljg.core.urls")),
|
||||
path("", include("ljg.redirect.urls")),
|
||||
path("admin/", admin.site.urls),
|
||||
path("oidc/", include("mozilla_django_oidc.urls")),
|
||||
|
|
Loading…
Reference in New Issue