Switch to unified view

a/Allura/allura/templates/user_preferences.html b/Allura/allura/templates/user_preferences.html
...
...
4
{% block title %}{{c.user.username}} / Preferences{% endblock %}
4
{% block title %}{{c.user.username}} / Preferences{% endblock %}
5
5
6
{% block header %}User Preferences for {{c.user.username}}{% endblock %}
6
{% block header %}User Preferences for {{c.user.username}}{% endblock %}
7
7
8
{% block content %}
8
{% block content %}
9
  <ul id="account-nav-menu" class="b-hornav droppy">
10
      {% for item in menu -%}
11
      <li id="{{ item.tabid }}">
12
      <a href="{{ item.target }}">
13
          {{ item.title }}
14
          <div class="marker{% if item.target.rstrip('/') == request.path.rstrip('/') %} current{% endif %}"></div>
15
      </a>
16
      </li>
17
      {%- endfor %}
18
   </ul>
19
9
  {% if g.theme.password_change_form %}
20
  {% if g.theme.password_change_form %}
10
  <div class="grid-20">
21
  <div class="grid-20">
11
    <h2>Change Password</h2>
22
    <h2>Change Password</h2>
12
    {{ g.theme.password_change_form.display() }}
23
    {{ g.theme.password_change_form.display() }}
13
  </div>
24
  </div>