7 lines
160 B
HTML
7 lines
160 B
HTML
{% extends "base.html" %}
|
|
{% block content %}
|
|
{% for item in items %}
|
|
{% include "listitem.html" with item=item %}
|
|
{% endfor %}
|
|
{% endblock %}
|
|
|