blob: 0e72198eb0292326ae53d65b1d357dd896ff434c (
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 m.business.all as businesses %}
{% 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>
|