~zulcss/horizon/horizon-g3-precise

« back to all changes in this revision

Viewing changes to horizon/templates/horizon/common/_region_selector.html

  • Committer: Package Import Robot
  • Author(s): Chuck Short
  • Date: 2012-06-01 10:57:56 UTC
  • mfrom: (1.1.15)
  • Revision ID: package-import@ubuntu.com-20120601105756-dif0km7n98vhdi2x
Tags: 2012.2~f2~20120530.1777-0ubuntu1
* New upstream release. 
* debian/patches/add_juju_settings_panel.patch: Refreshed
* debian/patches/turn-off-debug.patch: Refreshed

Show diffs side-by-side

added added

removed removed

Lines of Context:
6
6
    <ul id="region_list" class="dropdown-menu">
7
7
      <li class='divider'></li>
8
8
      {% for region in regions.available %}
9
 
      <li><a class="ajax-modal" href="{% url horizon:auth_login %}?region={{ region.endpoint }}">{{ region.name }}</a></li>
 
9
        {% if region.name != regions.current.name %}
 
10
          <li><a class="ajax-modal" href="{% url horizon:auth_login %}?region={{ region.endpoint }}">{{ region.name }}</a></li>
 
11
        {% endif %}
10
12
      {% endfor %}
11
13
    </ul>
12
14
  </div>