clean up section page

This commit is contained in:
krmax44 2022-03-16 09:55:12 +01:00
parent 40fa8e11c1
commit 8eff200beb
No known key found for this signature in database
GPG key ID: 5C499A4F4EC4EE03
2 changed files with 17 additions and 35 deletions

View file

@ -1,6 +1,6 @@
{% extends "froide_govplan/base.html" %} {% extends "froide_govplan/base.html" %}
{% load i18n %} {% load i18n %} {# TODO: i18n for all strings #}
{% load markup %} {% load markup %}
{% load cms_tags %} {% load cms_tags %}
{% load follow_tags %} {% load follow_tags %}

View file

@ -16,51 +16,33 @@
{% block app_body %} {% block app_body %}
<div class="container"> <div class="container">
<div class="row justify-content-center mb-3"> <div class="row justify-content-center mb-5">
<div class="col col-lg-12"> <div class="col col-lg-12">
<div class="box-card {% comment %} box-card-has-image-lg {% endcomment %} border-yellow md:shadow-yellow bg-white"> <div class="box-card border-yellow md:shadow-yellow bg-white p-3 p-md-4 p-lg-5 tight-margin">
<div> <div class="row mx-0">
{% comment %} <div class="box-card-image overlap-right text-center"> <div class="col col-12 col-md-12 pl-0 tight-margin">
{% with picture=object.image %}
<picture>
{% if ".svg" not in picture.url %}
{% thumbnail picture 280x0 crop=smart subject_location=picture.subject_location as thumb %}
<source
media="(min-width: 992px)"
srcset="{{ thumb.url }}"
/>
<source
media="(min-width: 992px)"
srcset="{{ thumb.url }}.avif"
type="image/avif"
/>
{% thumbnail picture 200x0 crop=smart subject_location=picture.subject_location as thumb %}
<source
srcset="{{ thumb.url }}.avif"
type="image/avif"
/>
{% endif %}
<img class="img-lg z-index-10" width="{{ thumb.width }}" height="{{ thumb.height }}" src="{{ thumb.url }}"
{% if picture.default_alt_text and not attributes.alt %} alt="{{ picture.default_alt_text }}"{% endif %}>
</picture>
{% endwith %}
</div> {% endcomment %}
<div class="flex-grow-1 tight-margin p-3 p-md-4 p-lg-5">
<h1 class="mt-0 h2"> <h1 class="mt-0 h2">
{{ object.title }} {{ object.title }}
</h1> </h1>
<p class="col-lg-8 px-0"> <p>
{% blocktranslate with section=object.title %} {% blocktranslate with section=object.title %}
Here you can find all plans of the section "{{section}}", which the coalition constituted in their agreement. On the curresponding detail pages, you'll get more information, stay up to date with news or submit changes. Here you can find all plans of the section "{{section}}", which the coalition constituted in their agreement. On the curresponding detail pages, you'll get more information, stay up to date with news or submit changes.
{% endblocktranslate %} {% endblocktranslate %}
</p> </p>
<!-- {% page_url 'koalitionstracker' as base_url %}
<a href="{{ base_url }}" class="action-link">zurück zu allen Kategorien</a> -->
</div> </div>
</div> </div>
<div class="mt-5">
{% include "froide_govplan/plugins/progress.html" with object_list=plans %}
<p class="small text-gray-700 mt-3">
<i class="fa fa-circle text-success"></i> umgesetzt
<i class="fa fa-circle text-warning ml-1"></i> teilweise umgesetzt
<i class="fa fa-circle text-danger ml-1"></i> verschoben
<i class="fa fa-circle text-primary ml-1"></i> begonnen
<i class="fa fa-circle text-light ml-1"></i> nicht begonnen
</p>
</div>
</div> </div>
</div> </div>
</div> </div>