{% macro single_comment(c, level=1) %} {% set ups=c.upvotes %} {% set downs=c.downvotes %} {% set score=ups-downs %} {% include "emoji_modal.html" %} {% if v and v.shadowbanned %} {% set replies=c.replies3 %} {% else %} {% set replies=c.replies %} {% endif %} {% if (c.is_banned or c.deleted_utc > 0 or c.is_blocking or c.is_blocked) and not (v and v.admin_level>0) and not (v and v.id==c.author_id) %}
{% if c.is_banned and c.ban_reason %}Reason: {{c.ban_reason}}{% endif %}
{% if render_replies %} {% if level<7 %}
{% set standalone=False %} {% for reply in replies %} {{single_comment(reply, level=level+1)}} {% endfor %}
{% elif replies %}
{% set standalone=False %} {% for reply in replies %} {{single_comment(reply, level=level+1)}} {% endfor %}
{% endif %} {% endif %}
{% else %} {% set score=c.score %} {% if v %} {% set voted=c.voted %} {% else %} {% set voted=-2 %} {% endif %} {% if standalone and level==1 %}
{% if c.post and c.post.over_18 %}+18{% endif %} {% if c.post %} {% if c.author_id==v.id and c.child_comments and is_notification_page%} Comment {{'Replies' if (c.child_comments | length)>1 else 'Reply'}}: {{c.post.realtitle(v) | safe}} {% elif c.post.author_id==v.id and c.level == 1 and is_notification_page%} Post Reply: {{c.post.realtitle(v) | safe}} {% elif is_notification_page and c.parent_submission in v.subscribed_idlist() %} Subscribed Thread: {{c.post.realtitle(v) | safe}} {% elif is_notification_page %} Username Mention: {{c.post.realtitle(v) | safe}} {% else %} {{c.post.realtitle(v) | safe}} {% endif %} {% elif c.author_id==NOTIFICATIONS_ACCOUNT or c.author_id==AUTOJANNY_ACCOUNT %} {{'SITE_NAME' | app_config}} Notification {% else %} Private Message {% endif %}
{% endif %}
{% if c.active_flags %}
Reported by:

				
    {% for f in c.ordered_flags %} {% if not f.user.shadowbanned or (v and v.shadowbanned) %}
  • {{f.user.username}}{% if f.reason %}: {{f.reason | safe}}{% endif %} {% if v.admin_level==6 %}[remove]{% endif %}
  • {% endif %} {% endfor %}
{% endif %} {% if c.is_banned and c.ban_reason %}
Reason: {{c.ban_reason}}
{% endif %}
{{c.realbody(v) | safe}} {% if not c.parent_submission and c.author_id!=NOTIFICATIONS_ACCOUNT and c.author_id!=AUTOJANNY_ACCOUNT and c.author_id!=v.id %} Reply

					
					
{% endif %}
{% if c.parent_submission %} {% if v and v.id==c.author_id %} {% endif %}
    {% if v and request.path.startswith('/@') and v.admin_level == 0%} {% if voted==1 %}
  • {% endif %} {% elif v %}
  • {% else %}
  • {% endif %}
  • {{score}}
  • {% if v and request.path.startswith('/@') and v.admin_level == 0 %} {% if voted==-1 %}
  • {% endif %} {% elif v %}
  • {% else %}
  • {% endif %}
  • Votes
  • {% if v %}
  • Unsave
  • Save
  • Reply
  • {% if v.id!=c.author_id %}
  • Give Award
  • {% endif %} {% endif %}
  • Context
  • Copy link
  • {% if v %}
  • Report
  • {% else %}
  • Report
  • {% endif %} {% if v and c.parent_submission and c.author_id==v.id %}
  • Edit
  • Delete
  • Undelete
  • {% endif %} {% if v and v.admin_level==6 and v.id==c.author_id %}
  • Undistinguish
  • Distinguish
  • {% endif %} {% if v and not v.id==c.author_id and v.admin_level == 0 %}
  • Unblock user
  • Block user
  • {% endif %} {% if v and c.post and (v.admin_level >= 1 or v.id == c.post.author_id) and c.level == 1 %}
  • Unpin
  • Pin
  • {% endif %} {% if v and v.admin_level>=3 %} {% if "/flagged/" in request.path %}
  • Approve
  • Remove
  • {% else %}
  • Approve
  • Remove
  • {% endif %} {% endif %} {% if v and c.parent_submission and (c.author_id==v.id or v.admin_level > 0) %}
  • Unmark +18
  • Mark +18
  • {% endif %} {% if v and v.admin_level==6 and v.id != c.author_id %}
  • Unban user
  • Ban user
  • {% endif %} {% if v and v.admin_level >=4 and c.oauth_app %}
  • API App
  • {% endif %}
  • {% if v and request.path.startswith('/@') and v.admin_level == 0 %} {% if voted==1 %}
  • {% endif %} {% elif v %}
  • {% else %}
  • {% endif %}
  • {{score}}
  • {% if v and request.path.startswith('/@') and v.admin_level == 0 %} {% if voted==-1 %}
  • {% endif %} {% elif v %}
  • {% else %}
  • {% endif %}
{% endif %}
{% if render_replies %} {% if level<7 %}
{% for reply in replies %} {{single_comment(reply, level=level+1)}} {% endfor %}
{% elif replies %}
{% for reply in replies %} {{single_comment(reply, level=level+1)}} {% endfor %}
{% endif %} {% endif %}
{% endif %} {% endmacro %} {% for comment in comments %} {{single_comment(comment)}} {% endfor %}