You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bloodhound.apache.org by rj...@apache.org on 2013/07/08 06:50:33 UTC

svn commit: r1500579 - /bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Author: rjollos
Date: Mon Jul  8 04:50:32 2013
New Revision: 1500579

URL: http://svn.apache.org/r1500579
Log:
Minor follow-on to [1470612]. The //Admin// entry would be present in the //More// drop-down if a plugin was installed and adding entries to the //More// drop-down. Refs #321.

Modified:
    bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html

Modified: bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html
URL: http://svn.apache.org/viewvc/bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html?rev=1500579&r1=1500578&r2=1500579&view=diff
==============================================================================
--- bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html (original)
+++ bloodhound/trunk/bloodhound_theme/bhtheme/templates/bloodhound_theme.html Mon Jul  8 04:50:32 2013
@@ -226,11 +226,12 @@
                   class="${classes(first_last(idx, chrome.nav.mainnav), active=item.active)}">${item.label}</li>
               <li class="dropdown ${all(not i.active for i in chrome.nav.mainnav if i.name in mainnav_show) and 'active' or None}"
                   py:if="len([i for i in chrome.nav.metanav if i.name not in metanav_hide] +
-                              [i for i in chrome.nav.mainnav if i.name not in mainnav_show + mainnav_to_meta])">
+                             [i for i in chrome.nav.mainnav if i.name not in mainnav_show + mainnav_to_meta])">
                 <a class="dropdown-toggle" data-toggle="dropdown" href="#">More<b class="caret"></b></a>
                 <ul class="dropdown-menu">
                   <li py:if="chrome.nav.mainnav"
-                      py:for="idx, item in enumerate(i for i in chrome.nav.mainnav if i.name not in mainnav_show)"
+                      py:for="idx, item in enumerate(i for i in chrome.nav.mainnav
+                                                     if i.name not in mainnav_show + mainnav_to_meta)"
                       class="${classes(first_last(idx, chrome.nav.mainnav), active=item.active)}">${item.label}</li>
                   <py:if test="chrome.nav.metanav">
                     <li py:if="len([i for i in chrome.nav.metanav if i.name not in metanav_hide])"