Work in Progress
{% if new_pages %}
New pages
{% for p in new_pages %}
- {{p.title}}
{%if p.text%}{{p.text}}
{%endif%}
{% endfor %}
{% endif %}
{% if edited_pages %}
Edited pages
{% for p in edited_pages %}
- {{p.title}}
{%if p.text%}{{p.text}}
{%endif%}
{% endfor %}
{% endif %}
{% if not new_pages and not edited_pages %}
No work in progress.
{% endif %}