| 
									
										
										
										
											2012-08-01 21:38:50 -04:00
										 |  |  | {% extends "site_base.html" %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-03 00:21:22 -04:00
										 |  |  | {% load bootstrap_tags %} | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-08-01 21:38:50 -04:00
										 |  |  | {% block head_title %}{{ team.name }}{% endblock %} | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | {% block body %} | 
					
						
							| 
									
										
										
										
											2012-08-03 00:41:42 -04:00
										 |  |  |     <div class="pull-right"> | 
					
						
							| 
									
										
										
										
											2012-08-01 22:49:27 -04:00
										 |  |  |     {% if can_join %} | 
					
						
							|  |  |  |         <form method="post" action="{% url team_join team.slug %}"> | 
					
						
							|  |  |  |             {% csrf_token %} | 
					
						
							|  |  |  |             <input type="submit" class="btn btn-primary" value="join"> | 
					
						
							|  |  |  |         </form> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     {% if can_leave %} | 
					
						
							|  |  |  |         <form method="post" action="{% url team_leave team.slug %}"> | 
					
						
							|  |  |  |             {% csrf_token %} | 
					
						
							|  |  |  |             <input type="submit" class="btn" value="leave"> | 
					
						
							|  |  |  |         </form> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							|  |  |  |      | 
					
						
							| 
									
										
										
										
											2012-08-01 22:59:41 -04:00
										 |  |  |     {% if can_apply %} | 
					
						
							| 
									
										
										
										
											2012-08-01 23:08:06 -04:00
										 |  |  |         <form method="post" action="{% url team_apply team.slug %}">  | 
					
						
							| 
									
										
										
										
											2012-08-01 22:59:41 -04:00
										 |  |  |             {% csrf_token %} | 
					
						
							|  |  |  |             <input type="submit" class="btn btn-primary" value="apply"> | 
					
						
							|  |  |  |         </form> | 
					
						
							|  |  |  |     {% endif %} | 
					
						
							| 
									
										
										
										
											2012-08-03 00:41:42 -04:00
										 |  |  |     </div> | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     <h1>{{ team.name }}{% if state %} <span class="label">{{ state }}</span>{% endif %}</h1> | 
					
						
							|  |  |  |      | 
					
						
							|  |  |  |     {% if team.description %}<p>{{ team.description }}</p>{% endif %} | 
					
						
							| 
									
										
										
										
											2012-08-01 22:59:41 -04:00
										 |  |  |      | 
					
						
							| 
									
										
										
										
											2012-08-02 13:03:16 -04:00
										 |  |  |     {% if user.is_staff or state == "manager" %} | 
					
						
							| 
									
										
										
										
											2012-08-02 13:17:16 -04:00
										 |  |  |         {% if team.managers %} | 
					
						
							|  |  |  |             <h2>Managers</h2> | 
					
						
							|  |  |  |             <table class="table table-striped"> | 
					
						
							|  |  |  |                 {% for membership in team.managers %} | 
					
						
							|  |  |  |                     <tr> | 
					
						
							| 
									
										
										
										
											2012-08-02 18:05:54 -04:00
										 |  |  |                         <td>{{ membership.user.email }}{% if user == membership.user %} <span class="label label-info">you</span>{% endif %}</td> | 
					
						
							| 
									
										
										
										
											2012-08-02 13:17:16 -04:00
										 |  |  |                         <td> | 
					
						
							|  |  |  |                             <form style="margin: 0;" method="post" action="{% url team_demote membership.pk %}">{% csrf_token %}<button type="submit" class="btn btn-mini">demote</button></form> | 
					
						
							|  |  |  |                         </td> | 
					
						
							|  |  |  |                     </tr> | 
					
						
							|  |  |  |                 {% endfor %} | 
					
						
							|  |  |  |             </table> | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							| 
									
										
										
										
											2012-08-02 13:03:16 -04:00
										 |  |  |         {% if team.members %} | 
					
						
							|  |  |  |             <h2>Team Members</h2> | 
					
						
							|  |  |  |             <table class="table table-striped"> | 
					
						
							|  |  |  |                 {% for membership in team.members %} | 
					
						
							|  |  |  |                     <tr> | 
					
						
							| 
									
										
										
										
											2012-08-02 18:05:54 -04:00
										 |  |  |                         <td>{{ membership.user.email }}{% if user == membership.user %} <span class="label label-info">you</span>{% endif %}</td> | 
					
						
							| 
									
										
										
										
											2012-08-02 13:17:16 -04:00
										 |  |  |                         <td> | 
					
						
							|  |  |  |                             <form style="margin: 0;" method="post" action="{% url team_promote membership.pk %}">{% csrf_token %}<button type="submit" class="btn btn-mini">promote</button></form> | 
					
						
							|  |  |  |                         </td> | 
					
						
							| 
									
										
										
										
											2012-08-02 13:03:16 -04:00
										 |  |  |                     </tr> | 
					
						
							|  |  |  |                 {% endfor %} | 
					
						
							|  |  |  |             </table> | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							|  |  |  |         {% if team.applicants and team.access == "application" %} | 
					
						
							|  |  |  |             <h2>Applicants</h2> | 
					
						
							|  |  |  |             <table class="table table-striped"> | 
					
						
							|  |  |  |                 {% for membership in team.applicants %} | 
					
						
							|  |  |  |                     <tr> | 
					
						
							|  |  |  |                         <td>{{ membership.user.email }}</td> | 
					
						
							| 
									
										
										
										
											2012-08-02 19:09:44 -04:00
										 |  |  |                         <td> | 
					
						
							|  |  |  |                             <form style="margin: 0; float: left;" method="post" action="{% url team_accept membership.pk %}">{% csrf_token %}<button type="submit" class="btn btn-mini">accept</button></form> | 
					
						
							|  |  |  |                             <form style="margin: 0; float: left;" method="post" action="{% url team_reject membership.pk %}">{% csrf_token %}<button type="submit" class="btn btn-mini">reject</button></form> | 
					
						
							|  |  |  |                         </td> | 
					
						
							| 
									
										
										
										
											2012-08-02 13:03:16 -04:00
										 |  |  |                     </tr> | 
					
						
							|  |  |  |                 {% endfor %} | 
					
						
							|  |  |  |             </table> | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							| 
									
										
										
										
											2012-08-03 00:21:22 -04:00
										 |  |  |         {% if team.invitees %} | 
					
						
							|  |  |  |             <h2>Invitees</h2> | 
					
						
							|  |  |  |             <table class="table table-striped"> | 
					
						
							|  |  |  |                 {% for membership in team.invitees %} | 
					
						
							|  |  |  |                     <tr> | 
					
						
							|  |  |  |                         <td>{{ membership.user.email }}</td> | 
					
						
							|  |  |  |                     </tr> | 
					
						
							|  |  |  |                 {% endfor %} | 
					
						
							|  |  |  |             </table> | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							|  |  |  |         {% if invite_form %} | 
					
						
							|  |  |  |             <form method="POST" action="" class="form-horizontal"> | 
					
						
							|  |  |  |                 {% csrf_token %} | 
					
						
							|  |  |  |                 <legend>Invite User to Team</legend> | 
					
						
							|  |  |  |                 {{ invite_form|as_bootstrap }} | 
					
						
							|  |  |  |                 <div class="form-actions"> | 
					
						
							|  |  |  |                     <input class="btn btn-primary" type="submit" value="Invite" /> | 
					
						
							|  |  |  |                 </div> | 
					
						
							|  |  |  |             </form> | 
					
						
							|  |  |  |         {% endif %} | 
					
						
							| 
									
										
										
										
											2012-08-02 13:03:16 -04:00
										 |  |  |     {% endif %} | 
					
						
							| 
									
										
										
										
											2012-08-01 21:38:50 -04:00
										 |  |  | {% endblock %} |