From 712c3d32f3ca8d51ed2afb65923cc63de2e3b2e7 Mon Sep 17 00:00:00 2001 From: moanos Date: Wed, 22 Jan 2025 20:39:15 +0100 Subject: [PATCH] feat: Add styleguide setup --- .../fellchensammlung/styleguide.html | 102 ++++++++++++++++++ src/fellchensammlung/urls.py | 1 + src/fellchensammlung/views.py | 6 ++ 3 files changed, 109 insertions(+) create mode 100644 src/fellchensammlung/templates/fellchensammlung/styleguide.html diff --git a/src/fellchensammlung/templates/fellchensammlung/styleguide.html b/src/fellchensammlung/templates/fellchensammlung/styleguide.html new file mode 100644 index 0000000..a0cd98b --- /dev/null +++ b/src/fellchensammlung/templates/fellchensammlung/styleguide.html @@ -0,0 +1,102 @@ +{% extends "fellchensammlung/base_generic.html" %} +{% load i18n %} +{% load static %} +{% block title %}{% translate "Styleguide" %}{% endblock %} + +{% block content %} +

This is a heading

+

And this is a short paragraph below

+
+

Card Containers

+
+

I am a card

+

Cards are responsive. Use them to display multiple items of the same category

+
+
+

Photos

+

Cards are responsive. Use them to display multiple items of the same category

+ A rat sitting on a wooden house +
+
+
+ +
+ {% include "fellchensammlung/partials/partial-map.html" %} +
+
+ {% include "fellchensammlung/lists/list-adoption-notices.html" %} + + +{% endblock %} diff --git a/src/fellchensammlung/urls.py b/src/fellchensammlung/urls.py index 954449f..4b19527 100644 --- a/src/fellchensammlung/urls.py +++ b/src/fellchensammlung/urls.py @@ -108,5 +108,6 @@ urlpatterns = [ ## TECHNICAL ## ############### path("sitemap.xml", sitemap, {"sitemaps": sitemaps}, name="django.contrib.sitemaps.views.sitemap"), + path("styleguide", views.styleguide, name="styleguide"), ] diff --git a/src/fellchensammlung/views.py b/src/fellchensammlung/views.py index f50814b..0bdf45f 100644 --- a/src/fellchensammlung/views.py +++ b/src/fellchensammlung/views.py @@ -633,3 +633,9 @@ def export_own_profile(request): ANs_as_json = serialize('json', ANs) full_json = f"{user_as_json}, {ANs_as_json}" return HttpResponse(full_json, content_type="application/json") + + +def styleguide(request): + + context = {"geocoding_api_url": settings.GEOCODING_API_URL, } + return render(request, 'fellchensammlung/styleguide.html', context=context)