Group directory view
[xnet] / xnet / templates / groups / index.html
index 3d47d7f..9d3cd59 100644 (file)
 {% block content %}
 {% regroup groups by get_kind_display as group_list %}
 {% for group in group_list %}
-<div class="group_list" id="{{ group.grouper }}_type">
-    <h3>{{ group.grouper }}</h3>
-    <input type="text" class="search-field" data-target="{{ group.grouper }}_type" />
-    <ul>
+<div class="span3 well" id="{{ group.grouper }}_type">
+    <h5>{{ group.grouper }}</h5>
+    <input type="text" class="search-field input-block-level" data-target="{{ group.grouper }}_type" />
+    <ul class="unstyled">
         {% for item in group.list %}
           <li><a href="{% url 'accounts:group-home' item.pk %}">{{ item }}</a></li>
         {% endfor %}