Heuzef - Les notes excentriques d'un bidouilleur.
Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

21 řádky
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 %}