forked from gergely/calendar-social
		
	
		
			
				
	
	
		
			34 lines
		
	
	
		
			911 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			911 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
{% extends 'base.html' %}
 | 
						|
{% from '_macros.html' import profile_link %}
 | 
						|
 | 
						|
{% block content %}
 | 
						|
<h2 class="ui header">
 | 
						|
    {% if group.visibility == 'secret' %}
 | 
						|
    [secret]
 | 
						|
    {% elif group.visibility == 'closed' %}
 | 
						|
    [closed]
 | 
						|
    {% elif group.visibility == 'public' %}
 | 
						|
    [public]
 | 
						|
    {% endif %}
 | 
						|
    {{group.display_name }}
 | 
						|
    <small>{{ group.fqn }}</small>
 | 
						|
</h2>
 | 
						|
    {% if not current_user.profile or not current_user.profile.is_member_of(group) %}
 | 
						|
        {% if group.visibility == 'public' %}
 | 
						|
Join
 | 
						|
        {% else %}
 | 
						|
Request membership
 | 
						|
        {% endif %}
 | 
						|
    {% else %}
 | 
						|
Invitation form
 | 
						|
    {% endif %}<br>
 | 
						|
    {% if group.details_visible_to(current_user.profile) %}
 | 
						|
<h2>{% trans %}Members{% endtrans %}</h2>
 | 
						|
        {% for member in group.members %}
 | 
						|
{{ profile_link(member) }}
 | 
						|
        {% endfor %}
 | 
						|
    {% else %}
 | 
						|
The details of this grop are not visible to you.
 | 
						|
    {% endif %}
 | 
						|
{% endblock content %}
 |