ascroll for item/edits

This commit is contained in:
j 2021-10-10 16:06:43 +01:00
commit 21db49fe48
19 changed files with 348 additions and 75 deletions

10
app/templates/texts.html Normal file
View file

@ -0,0 +1,10 @@
{% 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 %}