10 lines
181 B
HTML
10 lines
181 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block content %}
|
|
{{ p.title }}
|
|
{% for a in articles %}
|
|
<a href="/edit/article/{{a.id}}/">{{ a.name }}</a><br />
|
|
{% endfor %}
|
|
|
|
{% endblock %}
|