fedhub/templates/repo_tree.html
2020-04-21 21:32:51 -05:00

27 lines
792 B
HTML

{% extends "layout.html" %}
{% block title %}{{ repo_name }}: {{ tree_name }}{% if filepath %}: {{ filepath }}{% endif %}{% endblock %}
{% block content %}
<h1>{{ repo_name }}: {{ tree_name }}{% if filepath %}: {{ filepath }}{% endif %}</h1>
<h3>entries:</h3>
<table class="file-list striped">
<tbody>
{% for entry in entries %}
<tr>
<td>
<a href="{{ entry.url | safe }}">{{ entry.name }}</a>
{% if entry.is_directory %}/{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% if readme %}
<div class="readme">
{{ readme.rendered | safe }}
</div>
{% endif %}
{% endblock %}