Files
penracourses/rapids/templates/rapids/author_list.html
T
2021-01-18 11:18:07 +00:00

8 lines
207 B
HTML
Executable File

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