| |
---|
| | <dl> |
---|
| | <dt>{% trans 'To contact the list owners, use the following email address:' %}</dt> |
---|
| | <dd>{{ list.settings.owner_address }}</dd> |
---|
| | </dl> |
---|
| | |
---|
| | {% if user.is_authenticated %} |
---|
| | {% if user.is_list_owner or user.is_superuser %} |
---|
| | <h2>{% trans 'List Metrics' %}</h2> |
---|
| | <table class="table table-bordered table-striped"> |
---|
| | <tbody> |
---|
| | <tr> |
---|
| | <th>{% trans 'Created at' %}</th> |
---|
| | <td>{{list.settings.created_at}}</td> |
---|
| | </tr> |
---|
| | <tr> |
---|
| | <th>{% trans 'Last post at' %}</th> |
---|
| | <td>{{list.settings.last_post_at}}</td> |
---|
| | </tr> |
---|
| | <tr> |
---|
| | <th>{% trans 'Digest last sent at' %}</th> |
---|
| | <td>{{list.settings.digest_last_sent_at}}</td> |
---|
| | </tr> |
---|
| | <tr> |
---|
| | <th>{% trans 'Volume' %}</th> |
---|
| | <td>{{list.settings.volume}}</td> |
---|
| | </tr> |
---|
| | </tbody> |
---|
| | </table> |
---|
| | {% endif %} |
---|
| | {% endif %} |
---|
| | |
---|
| | </div> |
---|
| | |
---|
| | |
---|
| |
---|
| | |