njpma/app/templates/texts.html

11 lines
207 B
HTML
Raw Normal View History

2021-10-10 15:06:43 +00:00
{% extends "base.html" %}
{% block main %}
<div class="texts">
{% for text in texts %}
<div class="text">
<a href="{{ text.get_absolute_url }}">{{ text.title }}</a>
</div>
{% endfor %}
{% endblock %}