mirror of
https://github.com/correl/codereview.git
synced 2024-11-24 03:00:07 +00:00
12 lines
266 B
HTML
12 lines
266 B
HTML
|
{% extends "layouts/default.html" %}
|
||
|
|
||
|
{% block content %}
|
||
|
<h2>Repositories</h2>
|
||
|
|
||
|
<ul>
|
||
|
{% for repo in repositories %}
|
||
|
<li><a href="{% url codereview.browser.views.log repository=repo.name %}">{{ repo.name }}</a></li>
|
||
|
{% endfor %}
|
||
|
</ul>
|
||
|
{% endblock %}
|