fd
This commit is contained in:
parent
a6e077e038
commit
88ef4f242d
2 changed files with 3 additions and 3 deletions
|
@ -15,7 +15,7 @@
|
||||||
<div class="h6">We're sorry something here is wrong.</div>
|
<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>
|
<small class="form-text text-muted">Please select a reason for flagging below.</small>
|
||||||
<input type="hidden" name="formkey" value="{{v.formkey}}">
|
<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>
|
||||||
<div class="modal-footer">
|
<div class="modal-footer">
|
||||||
<button type="button" class="btn btn-link text-muted" data-dismiss="modal">Cancel</button>
|
<button type="button" class="btn btn-link text-muted" data-dismiss="modal">Cancel</button>
|
||||||
|
|
|
@ -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;">
|
<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>
|
<strong style="color: #999b2e;"><i class="far fa-fw fa-flag"></i> Reported by:</strong>
|
||||||
<ul style="margin-bottom: 0;">
|
<ul style="margin-bottom: 0;">
|
||||||
{% for u in p.flagged_by %}
|
{% for f in p.flags %}
|
||||||
<li><a href="{{ u.url }}">@{{ u.username }}</a></li>
|
<li><a href="{{ f.user.url }}">@{{ f.user.username }}</a>: "{{f.reason}}"</li>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue