Heuzef - Les notes excentriques d'un bidouilleur.
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。
 
 
 
 

21 行
434 B

  1. {% extends "base.html" %}
  2. {% block title %}
  3. Authors {{ super() }}
  4. {% endblock %}
  5. {% block page_header %}
  6. Authors
  7. {% endblock %}
  8. {% block content %}
  9. <table class="table table-bordered table-striped">
  10. {% for author, articles in authors|sort %}
  11. <tr>
  12. <td><a href="{{ SITEURL }}/{{ author.url }}">{{ author }}</a></td>
  13. <td>{{ articles|count }}</td>
  14. </tr>
  15. {% endfor %}
  16. </table>
  17. {% endblock %}