verwaltungstracker/froide_govplan/templates/froide_govplan/plugins/card_cols.html
2022-03-14 15:41:05 +01:00

27 lines
864 B
HTML

{% load thumbnail %}
<div class="row">
{% for object in object_list %}
<div class="col col-12 col-md-4 d-flex mb-3">
<a href="{{ object.get_absolute_url }}" class="d-flex w-100 text-body text-decoration-none">
<div class="box-card border-blue w-100 shadow-blue">
<div class="box-card-header p-3 bg-blue-20">
<h3 class="h6 m-0">
{{ object.title }}
</h3>
</div>
<div class="p-3 tight-margin">
{% if object.quote %}
<blockquote>
„{{ object.quote|striptags|truncatewords:20 }}“
</blockquote>
{% endif %}
<span class="badge badge-{{ object.get_status_css }}">
{{ object.get_status_display }}
</span>
</div>
</div>
</a>
</div>
{% endfor %}
</div>