ID: 62935a76867a88a617c7022a7584dc1126ead609
34 lines
—
991B —
View raw
| {% extends "index.html" %}
{% block page_title %}Explore{% endblock %}
{% block menu_explore_class %}selected{% endblock %}
{% block content %}
<div>
On this instance:
</div>
<br />
<div class="repositories_list striped">
{% for repository in repositories %}
<div>
<div>
{% if repository['path'].endswith('.mlist.git') %}
<span title="Mailing List">L</span>
<a href="{{ url('threads', repository=repository['path'][:-10]) }}">{{ repository['path'][:-4] }}</a>
{% else %}
<span title="Repository">R</span>
<a href="{{ url('overview', repository=repository['path'][:-4]) }}">{{ repository['path'] }}</a>
{% endif %}
</div>
<div>
{{ repository['description'] }}
</div>
</div>
{% endfor %}
</div>
{% endblock %}
|