8 lines
207 B
HTML
Executable File
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 %} |