{% if news_this_week.exists %}
{{ news_this_week.first.title }}
{{ news_this_week.first.description|truncatewords:30 }}
{% else %}No news this week.
{% endif %}
{% if news_this_month.exists %}
{{ news_this_month.first.title }}
{{ news_this_month.first.description|truncatewords:30 }}
{% else %}No news this month.
{% endif %}All News
{% for news in all_news %}
{% endfor %}
{{ news.title }}
{{ news.description|truncatewords:30 }}
×