Repo graph template

This commit is contained in:
Eryn Wells 2012-08-18 11:47:13 -07:00
parent 8e2decc27e
commit 57ea318fcf
3 changed files with 22 additions and 2 deletions

View file

@ -0,0 +1,7 @@
{# vim: set ft=htmldjango #}
{% extends "graph_base.html" %}
{% block graph %}
<h1 class="placeholder">PUT A GRAPH OF<br/>{{ username }}'s<br/>{{ repo }}
REPO<br/>HERE</h1>
{% endblock %}

View file

@ -7,6 +7,9 @@
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">My Repos</a>
<ul class="dropdown-menu">
{% for repo in request.user_repos %}
<li>{{ repo }}</li>
{% endfor %}
</ul>
</li>
<li><a href="{% url index %}">Followers</a></li>