Files
penracourses/longs/templates/longs/author_list.html
T
2021-02-04 10:30:56 +00:00

8 lines
205 B
HTML
Executable File

{% extends 'longs/base.html' %}
{% block content %}
{% for author in authors %}
<p>Author: <a href="{% url 'longs:author_detail' pk=author.pk %}">{{author.username}}</a>, </p>
{% endfor %}
{% endblock %}