From aa1fee05da9abd6366abda82571d2451ffa84d7a Mon Sep 17 00:00:00 2001 From: reverend Date: Sun, 19 Jul 2020 22:16:05 +0200 Subject: [PATCH] =?UTF-8?q?Erste=20Templates=20aus=20dem=20Frontend=20?= =?UTF-8?q?=C3=BCbernommen=20und=20angepasst?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../lostplaces_app/templates/global.html | 33 ++++++++++ .../templates/placeOverview.html | 62 +++++++++++++++++++ 2 files changed, 95 insertions(+) create mode 100644 source/lostplaces/lostplaces_app/templates/global.html create mode 100644 source/lostplaces/lostplaces_app/templates/placeOverview.html diff --git a/source/lostplaces/lostplaces_app/templates/global.html b/source/lostplaces/lostplaces_app/templates/global.html new file mode 100644 index 0000000..29a891b --- /dev/null +++ b/source/lostplaces/lostplaces_app/templates/global.html @@ -0,0 +1,33 @@ +{% load static %} + + + + + + + Preview + + +
+ +
+ +
+
+
+ {% block maincontent %} + + {% endblock maincontent %} +
+ + \ No newline at end of file diff --git a/source/lostplaces/lostplaces_app/templates/placeOverview.html b/source/lostplaces/lostplaces_app/templates/placeOverview.html new file mode 100644 index 0000000..7a9b6ff --- /dev/null +++ b/source/lostplaces/lostplaces_app/templates/placeOverview.html @@ -0,0 +1,62 @@ +{% extends 'global.html'%} + +{% block maincontent %} + + +
+ +
+ +
+
+

{{place.name}}

+

{{place.description}}

+
+
+
+ + + +
+

Sicherheitsmaßnahmen

+
    +
  • Kameras
  • +
  • Zaun
  • +
  • Wachhund
  • +
  • Alarmanlage
  • +
  • Selbstschussanlage
  • +
+
+ + + +

Lade deine Bilder hoch

+
+ +
+
+{% endblock maincontent %} \ No newline at end of file