{% extends '__layout__.html' %} {% block title %}{{groupObj.name}}{% endblock %} {% block head %} {% endblock %} {% block content %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %} {% if category == 'error': %}
{{ message }}
{% endif %} {% if category == 'success': %}
{{ message }}
{% endif %} {% endfor %}
{% endif %} {% endwith %}
Create Group Search Groups
{% for userMember in UserGroups: %}

{{userMember.group.name}}

{% endfor %}

{{groupObj.name}}

Owned By {% if groupObj.owner_id != None: %}{{groupObj.owner.username}}{%else%}No One!{%endif%}

{{groupservice.GetGroupMemberCount(groupObj)}} Members

{% if UserCurrentRole.rank != 0: %}

{{UserCurrentRole.name}} Rank

{% endif %}
{% if UserCurrentRole.rank == 0 and CurrentJoinRequest == None: %}
{% endif %} {% if CurrentJoinRequest != None %}
{%endif%}

Description

{% for line in groupObj.description.split('\n'): %} {% if line.strip() != '' %}

{{line}}

{%else%}
{%endif%} {% endfor %}
{% if UserCurrentRole.permissions.view_status: %} {% if GroupStatus != None: %}

{{GroupStatus.content}}

{{GroupStatus.poster.username}} Posted at {{GroupStatus.created_at.strftime("%b %d, %Y %I:%M %p")}} UTC

{%endif%} {% endif %} {% if UserCurrentRole.permissions.post_to_status: %}
{%endif%}

Members

Page 1

{% if UserCurrentRole.permissions.view_wall: %}
Group Wall
{% if UserCurrentRole.permissions.post_to_wall: %}
{% endif %}
{% for WallPost in GroupWall.items %}
{{WallPost.poster.username}}
{% for ContentLine in WallPost.content.split('\n'): %}

{{ContentLine}}

{% endfor %}

Posted at {{WallPost.created_at.strftime("%b %d, %Y %I:%M %p")}} UTC

{% if WallPost.poster.id == currentuser.id or UserCurrentRole.permissions.delete_from_wall: %} {% endif %}
{% endfor %}
Previous

Page {{PageNumber}}

Next
{% endif %}
{% endblock %}