diff options
-rw-r--r-- | templates/base.html | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/templates/base.html b/templates/base.html index 88bb3414..1a217505 100644 --- a/templates/base.html +++ b/templates/base.html @@ -32,17 +32,21 @@ <div id="archdev-navbar"> {% if user.is_authenticated %} <ul> - <li><a href="/devel/" title="Developer Dashboard">Dashboard</a></li> + <li><a href="{% url devel-index %}" title="Developer Dashboard">Dashboard</a></li> <li><a href="https://wiki.archlinux.org/index.php/DeveloperWiki" - title="Developer HOWTOs and documentation">DevWiki</a></li> - <li><a href="http://projects.archlinux.org/" title="Git Projects">Projects</a></li> + title="Developer Wiki">DevWiki</a></li> <li><a href="{% url news-list as newsl %}{{ newsl }}" title="Manage news articles">News</a></li> <li><a href="/packages/signoffs/" title="Package signoffs">Signoffs</a></li> <li><a href="/todo/" title="Developer todo lists">Todos</a></li> - <li><a href="/devel/clock/" title="Developer world clocks">Dev Clocks</a></li> + <li><a href="{% url devel-clocks %}" title="Developer world clocks">Dev Clocks</a></li> <li><a href="https://mailman.archlinux.org/mailman/private/arch-dev/" title="arch-dev mailing list archives">Archives</a></li> <li><a href="/mirrors/" title="Mirror server statistics">Mirrors</a></li> + <li><a href="https://stats.archlinux.org/munin/" + title="Arch server monitoring">Server Monitoring</a></li> + {% if user.is_staff %} + <li><a href="{% url admin:index %}" title="Django Admin Interface">Django Admin</a></li> + {% endif %} <li><a href="/devel/profile/" title="Modify your account profile">Profile</a></li> <li><a href="/logout/" title="Logout of the developer interface">Logout</a></li> </ul> |