mirror of
https://github.com/creyD/asiimov.git
synced 2026-06-12 00:52:23 +02:00
Removed About Page
This commit is contained in:
@@ -1,5 +0,0 @@
|
|||||||
{% extends 'master.html' %}
|
|
||||||
|
|
||||||
{% block content %}
|
|
||||||
<h1>About</h1>
|
|
||||||
{% endblock %}
|
|
||||||
@@ -27,7 +27,6 @@ urlpatterns = [
|
|||||||
# Static Pages
|
# Static Pages
|
||||||
path('help', views.help, name='help'),
|
path('help', views.help, name='help'),
|
||||||
path('imprint', views.imprint, name='imprint'),
|
path('imprint', views.imprint, name='imprint'),
|
||||||
path('about', views.about, name='about'),
|
|
||||||
|
|
||||||
# OpenID Redirects
|
# OpenID Redirects
|
||||||
path('signup', views.signup, name='signup'),
|
path('signup', views.signup, name='signup'),
|
||||||
|
|||||||
@@ -43,10 +43,6 @@ def imprint(request):
|
|||||||
return render(request, 'static_pages/imprint.html')
|
return render(request, 'static_pages/imprint.html')
|
||||||
|
|
||||||
|
|
||||||
def about(request):
|
|
||||||
return render(request, 'static_pages/about.html')
|
|
||||||
|
|
||||||
|
|
||||||
# PUBLIC AREA
|
# PUBLIC AREA
|
||||||
def dashboard(request):
|
def dashboard(request):
|
||||||
return render(request, 'core/dashboard.html')
|
return render(request, 'core/dashboard.html')
|
||||||
|
|||||||
Reference in New Issue
Block a user