{% extends "base.html" %} {% block title %}著者一覧 | ddb_single Blog{% endblock %} {% block content %}

著者一覧

{% for author in authors %}

{{ author.name }}

{% if author.email %}

{{ author.email }}

{% endif %} {% if author.bio %}

{{ author.bio }}

{% endif %}
{% else %}

まだ著者がいません。記事を書くと著者が自動で登録されます。

{% endfor %} {% endblock %}