Skip to content
This repository has been archived by the owner on Nov 3, 2021. It is now read-only.

Commit

Permalink
use the same list items for buttons on mobile and desktop site; remov…
Browse files Browse the repository at this point in the history
…e sites button for now. bug 582249
  • Loading branch information
Fred Wenzel committed Jul 27, 2010
1 parent 81e8a5d commit 43d2b6e
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 1 addition & 3 deletions templates/base.html
Expand Up @@ -32,9 +32,7 @@ <h1>{{ _('Input Dashboard') }}</h1>
</a>
<nav>
<ul>
<li class="first">
<a href="{{ url('clusters') }}">{{ _('Clusters') }}</a></li>
<li class="last"><a href="#">{{ _('Sites') }}</a></li>
{% include "includes/nav_buttons.html" %}
</ul>
</nav>
</div>
Expand Down
3 changes: 1 addition & 2 deletions templates/base_mobile.html
Expand Up @@ -30,8 +30,7 @@ <h1>
<br/>
<nav>
<ul class="gradient">
<li class="first"><a href="#">{{ _('Clusters') }}</a></li>
<li class="last"><a href="#">{{ _('Sites') }}</a></li>
{% include "includes/nav_buttons.html" %}
</ul>
</nav>
</header>
Expand Down
3 changes: 3 additions & 0 deletions templates/includes/nav_buttons.html
@@ -0,0 +1,3 @@
<li class="first last">
<a href="{{ url('clusters') }}">{{ _('Clusters') }}</a></li>
{#<li class="last"><a href="#">{{ _('Sites') }}</a></li>#}

0 comments on commit 43d2b6e

Please sign in to comment.