summaryrefslogtreecommitdiffstats
path: root/web/template
diff options
context:
space:
mode:
authorLukas Fleischer <lfleischer@archlinux.org>2017-02-04 00:13:09 +0100
committerLukas Fleischer <lfleischer@archlinux.org>2017-02-04 11:20:59 +0100
commit1049f9319131d7f6ffea6c1863739c39e3b30a8f (patch)
tree4de2cf4d01642e2d34a4d8ca3584e875309d4ba7 /web/template
parentb6aced9692dae4145b8848fb1da495901434a667 (diff)
downloadaur-1049f9319131d7f6ffea6c1863739c39e3b30a8f.tar.gz
aur-1049f9319131d7f6ffea6c1863739c39e3b30a8f.tar.xz
Add dashboard
For logged in users, the home page is replaced with an overview of the packages the user maintains or co-maintains. Signed-off-by: Lukas Fleischer <lfleischer@archlinux.org>
Diffstat (limited to 'web/template')
-rw-r--r--web/template/header.php7
1 files changed, 4 insertions, 3 deletions
diff --git a/web/template/header.php b/web/template/header.php
index 874109a5..7343575e 100644
--- a/web/template/header.php
+++ b/web/template/header.php
@@ -53,10 +53,9 @@
</div>
<div id="archdev-navbar">
<ul>
- <li><a href="<?= get_uri('/'); ?>">AUR <?= __("Home"); ?></a></li>
- <li><a href="<?= get_uri('/packages/'); ?>"><?= __("Packages"); ?></a></li>
<?php if (isset($_COOKIE['AURSID'])): ?>
- <li><a href="<?= get_uri('/packages/'); ?>?SeB=m&amp;K=<?= username_from_sid($_COOKIE["AURSID"]); ?>"><?= __("My Packages"); ?></a></li>
+ <li><a href="<?= get_uri('/'); ?>"><?= __("Dashboard"); ?></a></li>
+ <li><a href="<?= get_uri('/packages/'); ?>"><?= __("Packages"); ?></a></li>
<?php if (has_credential(CRED_PKGREQ_LIST)): ?>
<li><a href="<?= get_uri('/requests/') ; ?>"><?= __("Requests"); ?></a></li>
<?php endif; ?>
@@ -67,6 +66,8 @@
<?php if (has_credential(CRED_TU_LIST_VOTES)): ?><li><a href="<?= get_uri('/tu/'); ?>"><?= __("Trusted User"); ?></a></li><?php endif; ?>
<li><a href="<?= get_uri('/logout/'); ?>"><?= __("Logout"); ?></a></li>
<?php else: ?>
+ <li><a href="<?= get_uri('/'); ?>">AUR <?= __("Home"); ?></a></li>
+ <li><a href="<?= get_uri('/packages/'); ?>"><?= __("Packages"); ?></a></li>
<li><a href="<?= get_uri('/register/'); ?>"><?= __("Register"); ?></a></li>
<?php if (config_get_bool('options', 'disable_http_login') && empty($_SERVER['HTTPS'])): ?>
<li><a href="<?= get_uri('/login/', true); ?>"><?= __("Login"); ?></a></li>