fix updates styling
This commit is contained in:
parent
c02ada5cbf
commit
a9f80f0b3e
3 changed files with 164 additions and 148 deletions
|
|
@ -160,7 +160,7 @@
|
|||
{% if government.active %}
|
||||
<div class="col">
|
||||
<div class="h-100 p-5 border rounded-3">
|
||||
<h2>Neue Entwicklung melden</h2>
|
||||
<h2 style="font-size: 1.5rem;">Neue Entwicklung melden</h2>
|
||||
<p>
|
||||
Gibt es Neuigkeiten zu diesem Vorhaben, die wir noch nicht erfasst haben?
|
||||
</p>
|
||||
|
|
|
|||
|
|
@ -9,160 +9,87 @@
|
|||
</p>
|
||||
</div>
|
||||
|
||||
<div id="cardCarousel" class="carousel slide" data-bs-ride="carousel">
|
||||
<div class="carousel-inner">
|
||||
<div class="carousel-item active">
|
||||
<div class="row">
|
||||
{% for update in updates|slice:":3" %}
|
||||
<div class="col">
|
||||
<div class="card mb-4 rounded-3 shadow-sm">
|
||||
<a href="{{ update.get_absolute_url }}" class="text-body text-decoration-none">
|
||||
<div class="card-header p-3 tight-margin text-start">
|
||||
{% if show_context %}
|
||||
<span class="badge text-bg-blue-100 rounded-pill float-md-right mb-2 mb-md-0">
|
||||
{{ update.plan.get_section }}
|
||||
</span>
|
||||
{% endif %}
|
||||
|
||||
{% if show_context %}
|
||||
<h3 class="h5 mt-0">{{ update.plan }}</h3>
|
||||
{% else %}
|
||||
<h3 class="h4 mt-0">{{ update.title }}</h3>
|
||||
{% endif %}
|
||||
|
||||
<div class="small">
|
||||
<time datetime="{{ update.timestamp|date:'c' }}">{{ update.timestamp|date:"DATE_FORMAT" }}</time>
|
||||
|
||||
{% if update.user or update.organization %}
|
||||
<span>
|
||||
von {{ update.user.get_full_name }}{% if update.user and update.organization %},{% endif %}
|
||||
{{ update.organization.name }}
|
||||
</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="card-body tight-margin text-start">
|
||||
|
||||
{% if update.content or show_context %}
|
||||
<div class="tight-margin">
|
||||
{% if show_context %}
|
||||
<h4 class="h5">{{ update.title }}</h4>
|
||||
{% endif %}
|
||||
|
||||
{% with update.content|markdown as content %}
|
||||
{% if show_context %}
|
||||
{{ content|truncatewords_html:50 }}
|
||||
{% else %}
|
||||
{{ content }}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if update.url or update.foirequest or show_context %}
|
||||
<div class="{% if update.content %}box-card-links{% else %}d-flex mt-auto{% endif %}">
|
||||
{% if show_context %}
|
||||
<a href="{{ update.get_absolute_url }}" class="action-link">→ zum Vorhaben</a>
|
||||
{% else %}
|
||||
{% if update.url %}
|
||||
<a href="{{ update.url }}" class="action-link me-3" target="_blank" rel="noopener">→ mehr auf {{ update.get_url_domain }} lesen…</a>
|
||||
{% endif %}
|
||||
|
||||
{% if update.foirequest %}
|
||||
<a href="{{ update.foirequest.get_absolute_url }}" class="action-link">→ zur Anfrage</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
<div id="myCarousel" class="carousel slide" data-bs-ride="carousel">
|
||||
<div class="carousel-inner w-100">
|
||||
|
||||
{% for update in updates %}
|
||||
<div class="carousel-item {% if forloop.first %}active{% endif %}">
|
||||
<div class="card col-md-4">
|
||||
<a href="{{ update.get_absolute_url }}" class="text-body text-decoration-none">
|
||||
<div class="card-header p-3 tight-margin text-start">
|
||||
{% if show_context %}
|
||||
<span class="badge text-bg-blue-100 rounded-pill float-md-right mb-2 mb-md-0">
|
||||
{{ update.plan.get_section }}
|
||||
</span>
|
||||
{% endif %}
|
||||
|
||||
{% if show_context %}
|
||||
<h3 class="h5 mt-0 ellipsis">{{ update.plan }}</h3>
|
||||
{% else %}
|
||||
<h3 class="h4 mt-0 ellipsis">{{ update.title }}</h3>
|
||||
{% endif %}
|
||||
|
||||
<div class="small">
|
||||
<time datetime="{{ update.timestamp|date:'c' }}">{{ update.timestamp|date:"DATE_FORMAT" }}</time>
|
||||
|
||||
{% if update.user or update.organization %}
|
||||
<span>
|
||||
von {{ update.user.get_full_name }}{% if update.user and update.organization %},{% endif %}
|
||||
{{ update.organization.name }}
|
||||
</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="card-body tight-margin text-start p-3">
|
||||
|
||||
{% if update.content or show_context %}
|
||||
<div class="tight-margin">
|
||||
{% if show_context %}
|
||||
<h4 class="h5">{{ update.title }}</h4>
|
||||
{% endif %}
|
||||
|
||||
{% with update.content|markdown as content %}
|
||||
{% if show_context %}
|
||||
{{ content|truncatewords_html:50 }}
|
||||
{% else %}
|
||||
{{ content }}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if update.url or update.foirequest or show_context %}
|
||||
<div class="{% if update.content %}box-card-links{% else %}d-flex mt-auto{% endif %}">
|
||||
{% if show_context %}
|
||||
<a href="{{ update.get_absolute_url }}" class="action-link">→ zum Vorhaben</a>
|
||||
{% else %}
|
||||
{% if update.url %}
|
||||
<a href="{{ update.url }}" class="action-link me-3" target="_blank" rel="noopener">→ mehr auf {{ update.get_url_domain }} lesen…</a>
|
||||
{% endif %}
|
||||
|
||||
{% if update.foirequest %}
|
||||
<a href="{{ update.foirequest.get_absolute_url }}" class="action-link">→ zur Anfrage</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
<div class="carousel-item">
|
||||
<div class="row">
|
||||
{% for update in updates|slice:"3:6" %}
|
||||
<div class="col">
|
||||
<div class="card mb-4 rounded-3 shadow-sm">
|
||||
<a href="{{ update.get_absolute_url }}" class="text-body text-decoration-none">
|
||||
<div class="card-header p-3 tight-margin text-start">
|
||||
{% if show_context %}
|
||||
<span class="badge text-bg-blue-100 rounded-pill float-md-right mb-2 mb-md-0">
|
||||
{{ update.plan.get_section }}
|
||||
</span>
|
||||
{% endif %}
|
||||
|
||||
{% if show_context %}
|
||||
<h3 class="h5 mt-0">{{ update.plan }}</h3>
|
||||
{% else %}
|
||||
<h3 class="h4 mt-0">{{ update.title }}</h3>
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
|
||||
<div class="small">
|
||||
<time datetime="{{ update.timestamp|date:'c' }}">{{ update.timestamp|date:"DATE_FORMAT" }}</time>
|
||||
|
||||
{% if update.user or update.organization %}
|
||||
<span>
|
||||
von {{ update.user.get_full_name }}{% if update.user and update.organization %},{% endif %}
|
||||
{{ update.organization.name }}
|
||||
</span>
|
||||
{% endif %}
|
||||
</div>
|
||||
|
||||
</div>
|
||||
</a>
|
||||
<div class="card-body tight-margin text-start">
|
||||
|
||||
{% if update.content or show_context %}
|
||||
<div class="p-3 p-md-4 tight-margin">
|
||||
{% if show_context %}
|
||||
<h4 class="h5">{{ update.title }}</h4>
|
||||
{% endif %}
|
||||
|
||||
{% with update.content|markdown as content %}
|
||||
{% if show_context %}
|
||||
{{ content|truncatewords_html:50 }}
|
||||
{% else %}
|
||||
{{ content }}
|
||||
{% endif %}
|
||||
{% endwith %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
{% if update.url or update.foirequest or show_context %}
|
||||
<div class="p-3 p-md-4 {% if update.content %}box-card-links{% else %}d-flex mt-auto{% endif %}">
|
||||
{% if show_context %}
|
||||
<a href="{{ update.get_absolute_url }}" class="action-link">→ zum Vorhaben</a>
|
||||
{% else %}
|
||||
{% if update.url %}
|
||||
<a href="{{ update.url }}" class="action-link me-3" target="_blank" rel="noopener">→ mehr auf {{ update.get_url_domain }} lesen…</a>
|
||||
{% endif %}
|
||||
|
||||
{% if update.foirequest %}
|
||||
<a href="{{ update.foirequest.get_absolute_url }}" class="action-link">→ zur Anfrage</a>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
{% endfor %}
|
||||
</div>
|
||||
</div>
|
||||
|
||||
</div>
|
||||
<button class="carousel-control-prev" type="button" data-bs-target="#cardCarousel" data-bs-slide="prev">
|
||||
<button class="carousel-control-prev" type="button" data-bs-target="#myCarousel" data-bs-slide="prev">
|
||||
<span class="carousel-control-prev-icon" aria-hidden="true"></span>
|
||||
<span class="visually-hidden">Zurück</span>
|
||||
<span class="visually-hidden">Previous</span>
|
||||
</button>
|
||||
<button class="carousel-control-next" type="button" data-bs-target="#cardCarousel" data-bs-slide="next">
|
||||
<button class="carousel-control-next" type="button" data-bs-target="#myCarousel" data-bs-slide="next">
|
||||
<span class="carousel-control-next-icon" aria-hidden="true"></span>
|
||||
<span class="visually-hidden">Weiter</span>
|
||||
<span class="visually-hidden">Next</span>
|
||||
</button>
|
||||
</div>
|
||||
|
||||
|
|
@ -188,9 +115,9 @@
|
|||
{% endif %}
|
||||
|
||||
{% if show_context %}
|
||||
<h3 class="h5 mt-0">{{ update.plan }}</h3>
|
||||
<h3 class="h5 mt-0 ellipsis">{{ update.plan }}</h3>
|
||||
{% else %}
|
||||
<h3 class="h4 mt-0">{{ update.title }}</h3>
|
||||
<h3 class="h4 mt-0 ellipsis">{{ update.title }}</h3>
|
||||
{% endif %}
|
||||
|
||||
<div class="small">
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue