Add test for news
[xnet] / xnet / templates / groups / home.html
1 {% extends "groups/base.html" %}
2 {% block js %}
3 <script type="text/javascript">
4 </script>
5 {% endblock %}
6
7 {% block content %}
8 <div class="group-desc">
9 <h1>{{ group.name }}</h1>
10 {% if group.logo %}<img class="logo" src="{{ group.logo.url_70x70 }}" />{% endif %}
11 {% if group.web %}<p><span>Web</span> : <a href="{{ group.web }}">{{ group.web }}</a></p>{% endif %}
12 {% if group.description %}<p>{{ group.description }}</p>{% endif %}
13 </div>
14 {% endblock %}