remotes/1693045480750635534/spooky-22
Aevann1 2021-07-24 20:21:16 +02:00
parent 9a75f0332b
commit a42cdab3c4
2 changed files with 3 additions and 3 deletions

View File

@ -15,7 +15,7 @@
<div class="h6">We're sorry something here is wrong.</div>
<small class="form-text text-muted">Please select a reason for flagging below.</small>
<input type="hidden" name="formkey" value="{{v.formkey}}">
<textarea id="reason" rows="1"></textarea>
<textarea id="reason" rows="1" class="form-control"></textarea>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-link text-muted" data-dismiss="modal">Cancel</button>

View File

@ -335,8 +335,8 @@
<div id="flaggers-{{p.id}}" class="flaggers d-none" style="margin: 7px; border: 1px solid #999b2e; padding: 10px; border-radius: 3px;">
<strong style="color: #999b2e;"><i class="far fa-fw fa-flag"></i> Reported by:</strong>
<ul style="margin-bottom: 0;">
{% for u in p.flagged_by %}
<li><a href="{{ u.url }}">@{{ u.username }}</a></li>
{% for f in p.flags %}
<li><a href="{{ f.user.url }}">@{{ f.user.username }}</a>: "{{f.reason}}"</li>
{% endfor %}
</ul>
</div>