blob: 7d6e6f302d074884b597f7412e2ee07b9df3eeb8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{% load i18n %}
<ul class="list-news">
{% for m in meetings %}
<li>
<h4>
<a href="{{ m.get_absolute_url }}">{{ m }}</a>
</h4>
{% with businesses=m.business.all %}
{% if businesses %}
<div class="meta">
<b>{% translate "New and Ongoing business" %}</b>
<ul>
{% for b in businesses %}
<li>{{ b.title }}</li>
{% endfor %}
</ul>
</div>
{% endif %}
{% endwith %}
<a class="link-readmore" href="{{ m.get_absolute_url }}">
{% translate "Read more" context "Following meeting minutes summary" %}
</a>
</li>
{% endfor %}
</ul>
|