Commit e826e410ceba25a7491df0814d85e28759ba8b22
1 parent
fe573112
Readded Gitlab links
Showing
1 changed file
with
14 additions
and
1 deletions
Show diff stats
src/templates/base.html
... | ... | @@ -74,7 +74,20 @@ |
74 | 74 | <li> |
75 | 75 | <a href="{% url "feedzilla_index" %}">{% trans "Blogs" %}</a> |
76 | 76 | </li> |
77 | - | |
77 | + <li class="dropdown"> | |
78 | + <a href="#" class="dropdown-toggle" data-toggle="dropdown">{% trans "Repository" %} <b class="caret"></b></a> | |
79 | + <ul class="dropdown-menu"> | |
80 | + <li><a href="/gitlab/public/projects">{% trans "Public Projects" %}</a></li> | |
81 | + {% if user.is_active %} | |
82 | + <li><a href="/gitlab/profile">{% trans "Profile" %}</a></li> | |
83 | + <li><a href="/gitlab/projects/new">{% trans "New Project" %}</a></li> | |
84 | + | |
85 | + <li><a href="/gitlab/dashboard/projects">{% trans "Projects" %}</a></li> | |
86 | + <li><a href="/gitlab/dashboard/issues">{% trans "Issues" %}</a></li> | |
87 | + <li><a href="/gitlab/dashboard/merge_requests">{% trans "Merge Requests" %}</a></li> | |
88 | + {% endif %} | |
89 | + </ul> | |
90 | + </li> | |
78 | 91 | {% if is_trac %} |
79 | 92 | <li class="dropdown"> |
80 | 93 | <a href="#" class="dropdown-toggle" data-toggle="dropdown">{% trans "Contribute" %} <b class="caret"></b></a> | ... | ... |