1
0
mirror of https://github.com/creyD/asiimov.git synced 2026-06-11 16:42:23 +02:00

Removed About Page

This commit is contained in:
Conrad
2020-01-22 15:12:06 +01:00
parent f3675965ad
commit 1497efd5fe
3 changed files with 0 additions and 10 deletions

View File

@@ -1,5 +0,0 @@
{% extends 'master.html' %}
{% block content %}
<h1>About</h1>
{% endblock %}

View File

@@ -27,7 +27,6 @@ urlpatterns = [
# Static Pages
path('help', views.help, name='help'),
path('imprint', views.imprint, name='imprint'),
path('about', views.about, name='about'),
# OpenID Redirects
path('signup', views.signup, name='signup'),

View File

@@ -43,10 +43,6 @@ def imprint(request):
return render(request, 'static_pages/imprint.html')
def about(request):
return render(request, 'static_pages/about.html')
# PUBLIC AREA
def dashboard(request):
return render(request, 'core/dashboard.html')