A flat-file CMS written in Python and Flask
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

index.html.j2 484B

123456789101112131415161718
  1. {% extends "layout.html.j2" %}
  2. {% block content %}
  3. <div class="repo">
  4. <h3 class="heading">git repo</h3>
  5. <table class="file_statuses">
  6. {% for file in git.file_statuses %}
  7. <tr>
  8. <td class="file_statuses__status file_statuses__status--{{ file.status|replace('_', '-') }}">
  9. {{ file.status }}
  10. </td>
  11. <td class="file_statuses__filename">
  12. {{ file.filename }}
  13. </td>
  14. </tr>
  15. {% endfor %}
  16. </table>
  17. </div>
  18. {% endblock %}