summaryrefslogtreecommitdiff
path: root/templates/apps/name/name.html
blob: c601da96873a8b5fd8b3520fcc4035637c9433f0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{% extends "base.html" %}
{% block js %}
<script type="text/javascript">
$(function() {
   	$("#members").accordion({
   		header: 'h3'
   	});
});
</script>
{% endblock %}
{% block headline %}{{name.shortname}}{% endblock %}
{% block title %}COIP - {{name.shortname}}{% endblock %}
{% block main %}
<div class="infopanel">
{{name.shortname}}
{{name.description}}
{{name}}
</div>
<div id="members">
	{% for m in memberships.all %}
	<div id="m{{m.id}}" class="{{m.status}}">
	   <h3 style="padding-left: 20px;">{{m.user}}</h3>
	   <div>
	   	  {{m.user}} has been a member of {{m.name.shortname}} since {{m.timecreated}}<br/>
	   </div>
	</div>
	{% endfor %}
</div>
{% endblock %}