{% from "macros/icon.html" import icon with context %} {% macro checked_if(cond) %} {% if cond -%} checked="" {%- endif %} {% endmacro %} {% macro disabled_if(cond) %} {% if cond -%} disabled="" {%- endif %} {% endmacro %} {% macro privacy_select(value = 0) %} {% endmacro %} {% macro comment_area(p) %} {% if current_user.is_authenticated %} {% if current_user.is_disabled %}
Your account is suspended
{% elif current_guild and not current_guild.allows_posting(current_user.user) %}
This community allows only its members to post and comment
{% elif p.is_locked %}
Comments are closed
{% else %}
{% endif %} {% else %}
Log in to leave a comment
{% endif %} {% endmacro %}