Add newsletter

This commit is contained in:
cuom1999 2020-08-02 17:34:20 -05:00
parent 8f6507fdab
commit 991835e4f4
4 changed files with 30 additions and 7 deletions

View file

@ -1,11 +1,11 @@
{% extends "base.html" %}
{% block title %}{{ object.title }} - Newsletter Archive - {{ SITE_LONG_NAME }}{% endblock %}
{% block content_title %}Newsletter Archive: {{ object.title }}{% endblock %}
{% block title %}{{ newsletter }} - Newsletter Archive - {{ SITE_LONG_NAME }}{% endblock %}
{% block content_title %}Newsletter Archive: {{ newsletter }}{% endblock %}
{% block body %}
<ul>
{% for submission in latest %}
<li><a href="{{ submission.get_absolute_url }}">{{ submission }}</a></li>
<li><a href="{{ submission.get_absolute_url() }}">{{ submission }}</a></li>
{% endfor %}
</ul>
<hr>