Basic group profile and web/logo/description fields of the Group model
[xnet] / xnet / templates / groups / index.html
index 9001ee8..c6390fb 100644 (file)
@@ -1,10 +1,5 @@
-{% extends "base.html" %}
-{% load static %}
+{% extends "groups/base.html" %}
 
-{% block css %}
-    {{ block.super }}
-    <link href="{% static 'css/groups.css' %}" rel="stylesheet">
-{% endblock %}
 {% block js %}
     <script type="text/javascript">
         $('.search-field').keyup(function(){
@@ -29,7 +24,7 @@
     <input type="text" class="search-field" data-target="{{ group.grouper }}_type" />
     <ul>
         {% for item in group.list %}
-          <li><a href="{% url 'groups:view' item.pk %}">{{ item }}</a></li>
+          <li><a href="{% url 'accounts:group-view' item.pk %}">{{ item }}</a></li>
         {% endfor %}
     </ul>
 </div>