Merge branch 'master' of ssh://git.wiai.de:22222/mgoetz/roofis2

This commit is contained in:
Lamprecht 2018-06-09 00:39:34 +02:00
commit ebb12ebb6c
3 changed files with 14 additions and 0 deletions

View File

@ -6,4 +6,5 @@ urlpatterns = [
path('', views.home, name='home'), path('', views.home, name='home'),
path('adminpage', views.admin, name='admin'), path('adminpage', views.admin, name='admin'),
path('booking', views.booking, name='booking'), path('booking', views.booking, name='booking'),
path('favorites', views.favorites, name='favorites'),
] ]

View File

@ -15,3 +15,6 @@ def booking(request):
def admin(request): def admin(request):
return render(request, 'admin.jinja', {"title": "rooF(i)S is love rooF(i)S is live!!"}) return render(request, 'admin.jinja', {"title": "rooF(i)S is love rooF(i)S is live!!"})
def favorites(request):
return render(request, 'favorites.jinja', {"title": "rooF(i)S is love rooF(i)S is live!!"})

View File

@ -0,0 +1,10 @@
{% extends 'base.jinja' %}
{% block content %}
<h1>Ressourcenpool Bamberg</h1>
<p><strong>Impressum</strong></p>
<p>Anbieter:<br />Max Mustermann<br />Musterstraße 1<br />96049 Bamberg</p>
<p>Kontakt:<br />Telefon: 0951/12345678<br />Telefax: 0951/1234567<br />E-Mail: mail@mustermann.de<br />Website: www.mustermann.de</p>
<p> </p>
<p>Bei redaktionellen Inhalten:</p>
<p>Verantwortlich nach § 55 Abs.2 RStV<br />Moritz Schreiberling<br />Musterstraße 2<br />96049 Bamberg</p>
{% endblock %}