{% extends "closedverse_main/layout.html" %} {% load closedverse_tags %}{% load closedverse_community %}{% load closedverse_user %}{% block main-body %}
{% if user.is_warned and user.is_active %}

WARNING: You have been issued a warning by an administrator.

{% if user.get_warned_reason %}

Reason: "{{ user.get_warned_reason }}"

{% endif %}
{% endif %} {% if not user.is_active and user.is_authenticated %}

Oops: You've been smacked by an admin. Better luck next time.

{% if user.get_warned_reason %}

Reason: "{{ user.get_warned_reason }}"

{% endif %}
{% endif %} {% if announcements and request.user.is_authenticated %}

Latest Announcements

{% for announcement in announcements %} {% profile_post announcement True %} {% endfor %}
{% endif %} {% if WelcomeMSG and not request.user.is_authenticated %}

Welcome to {{ brand_name }}!

{% for WelcomeMSG in WelcomeMSG %}

{{ WelcomeMSG.Title }}

{{ WelcomeMSG.message|linebreaksbr|urlize }}

{% if WelcomeMSG.image %}{% endif %} {% endfor %}
{% endif %} {% if request.user.c_tokens > 0 %}Create a community{% endif %} {% if availableads %}

User-Generated Ad

What are user-generated ads?

{% endif %}
{% if favorites %}

Favorite communities

{% endif %} {% if feature %} {% community_page_element feature "Featured Communities" True %} {% endif %} {% community_page_element general "General Communities" False "general" %} {% community_page_element game "Game Communities" False "game" %} {% community_page_element special "Special Communities" False "special" %} {% community_page_element user_communities "Popular User-Created Communities" False "usr" %} {% if user_communities %}Show more{% endif %} {% community_page_element my_communities "My Communities" %}
{% endblock %}