updates templates with new capabilities
This commit is contained in:
@@ -66,7 +66,7 @@
|
||||
<li><a class=dashboardButton href="/">
|
||||
<span class=collapse>dashboard</span>
|
||||
</a></li>
|
||||
<li><a class=profileButton href="/{{ user }}">
|
||||
<li><a class=profileButton href="/~{{ user }}">
|
||||
<span class=collapse>profile</span>
|
||||
</a>
|
||||
</li>
|
||||
@@ -94,7 +94,7 @@
|
||||
viewing
|
||||
<span class=linkedPath>
|
||||
{% block breadcrumbs %}
|
||||
<a href="/">{{ owner }}</a>/<a href="/">{{ repo }}</a>
|
||||
<a href="/~{{ owner }}">{{ owner }}</a>/<a href="/~{{ owner }}/{{ repo }}">{{ repo }}</a>
|
||||
{% endblock breadcrumbs %}
|
||||
</span>
|
||||
</span>
|
||||
|
||||
@@ -3,7 +3,7 @@
|
||||
{% block page %}code{% endblock page %}
|
||||
|
||||
{% block breadcrumbs %}
|
||||
<a href="/">{{ owner }}</a>/<a href="/">{{ repo }}</a>/<a href="/">{{ branch }}</a>
|
||||
<a href="/~{{ owner }}">{{ owner }}</a>/<a href="/~{{ owner }}/{{ repo }}">{{ repo }}</a>/<a href="/">{{ branch }}</a>
|
||||
{% endblock breadcrumbs %}
|
||||
|
||||
{% block content %}
|
||||
@@ -19,7 +19,7 @@
|
||||
{% block entries_list %}
|
||||
{% for entry in entries %}
|
||||
<tr>
|
||||
<td><a class={{ entry.class }} href="/">{{ entry.path }}</a></td>
|
||||
<td><a class={{ entry.class }} href="./{{ entry.path }}">{{ entry.path }}</a></td>
|
||||
<td><a class=commit href="./?commit={{ entry.last_commit }}">
|
||||
{{ entry.last_commit_message }}
|
||||
</a></td>
|
||||
|
||||
Reference in New Issue
Block a user