phantasmobile/app/templates/archive.html

8 lines
160 B
HTML
Raw Normal View History

2023-07-15 13:00:36 +05:30
{% extends "base.html" %}
{% block content %}
{% for item in items %}
2023-07-16 11:26:14 +05:30
{% include "listitem.html" with item=item %}
2023-07-15 13:00:36 +05:30
{% endfor %}
{% endblock %}