|
|
|
@ -44,7 +44,7 @@
|
|
|
|
|
|
|
|
|
|
<div data-next="{next}">
|
|
|
|
|
|
|
|
|
|
<div class="post-container" data-next="{next}">
|
|
|
|
|
<div component="posts/flags" class="panel-group post-container" id="accordion" role="tablist" aria-multiselectable="true" data-next="{next}">
|
|
|
|
|
<!-- IF !posts.length -->
|
|
|
|
|
<div class="alert alert-success">
|
|
|
|
|
No flagged posts!
|
|
|
|
@ -52,54 +52,117 @@
|
|
|
|
|
<!-- ENDIF !posts.length -->
|
|
|
|
|
|
|
|
|
|
<!-- BEGIN posts -->
|
|
|
|
|
<div class="row" data-pid="{posts.pid}" data-tid="{posts.topic.tid}">
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<div class="panel panel-default">
|
|
|
|
|
<div class="panel-body flag-post-body">
|
|
|
|
|
<a href="{config.relative_path}/user/{../user.userslug}">
|
|
|
|
|
<!-- IF ../user.picture -->
|
|
|
|
|
<img title="{posts.user.username}" src="{../user.picture}">
|
|
|
|
|
<!-- ELSE -->
|
|
|
|
|
<div class="user-icon" style="background-color: {../user.icon:bgColor};">{../user.icon:text}</div>
|
|
|
|
|
<!-- ENDIF ../user.picture -->
|
|
|
|
|
</a>
|
|
|
|
|
<div class="panel panel-default" component="posts/flag" data-pid="{../pid}">
|
|
|
|
|
<div class="panel-heading" role="tab">
|
|
|
|
|
<h4 class="panel-title">
|
|
|
|
|
<a role="button" data-toggle="collapse" data-parent="#accordion" href="#flag-pid-{posts.pid}" aria-expanded="true" aria-controls="flag-pid-{posts.pid}">
|
|
|
|
|
<span class="label <!-- IF ../flagData.labelClass -->label-{../flagData.labelClass}<!-- ELSE -->label-info<!-- ENDIF ../flagData.labelClass -->">[[topic:flag_manage_state_<!-- IF ../flagData.state -->{../flagData.state}<!-- ELSE -->open<!-- ENDIF ../flagData.state -->]]</span>
|
|
|
|
|
[[topic:flag_manage_title, {posts.category.name}]]
|
|
|
|
|
<small><span class="timeago" title="{posts.timestampISO}"></span></small>
|
|
|
|
|
</a>
|
|
|
|
|
</h4>
|
|
|
|
|
</div>
|
|
|
|
|
<div id="flag-pid-{posts.pid}" class="panel-collapse collapse" role="tabpanel">
|
|
|
|
|
<div class="panel-body">
|
|
|
|
|
<div class="row" data-pid="{posts.pid}" data-tid="{posts.topic.tid}">
|
|
|
|
|
<div class="col-sm-8">
|
|
|
|
|
<div class="well flag-post-body">
|
|
|
|
|
<a href="{config.relative_path}/user/{../user.userslug}">
|
|
|
|
|
<!-- IF ../user.picture -->
|
|
|
|
|
<img title="{posts.user.username}" src="{../user.picture}">
|
|
|
|
|
<!-- ELSE -->
|
|
|
|
|
<div class="user-icon" style="background-color: {../user.icon:bgColor};">{../user.icon:text}</div>
|
|
|
|
|
<!-- ENDIF ../user.picture -->
|
|
|
|
|
</a>
|
|
|
|
|
|
|
|
|
|
<a href="{config.relative_path}/user/{../user.userslug}">
|
|
|
|
|
<strong><span>{../user.username}</span></strong>
|
|
|
|
|
</a>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<p>{posts.content}</p>
|
|
|
|
|
<a href="{config.relative_path}/user/{../user.userslug}">
|
|
|
|
|
<strong><span>{../user.username}</span></strong>
|
|
|
|
|
</a>
|
|
|
|
|
<div class="content">
|
|
|
|
|
<p>{posts.content}</p>
|
|
|
|
|
</div>
|
|
|
|
|
<small>
|
|
|
|
|
<span class="pull-right">
|
|
|
|
|
Posted in <a href="{config.relative_path}/category/{posts.category.slug}" target="_blank"><i class="fa {posts.category.icon}"></i> {posts.category.name}</a>, <span class="timeago" title="{posts.timestampISO}"></span> •
|
|
|
|
|
<a href="{config.relative_path}/topic/{posts.topic.slug}/{posts.index}" target="_blank">Read More</a>
|
|
|
|
|
</span>
|
|
|
|
|
</small>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-4">
|
|
|
|
|
<i class="fa fa-flag"></i> This post has been flagged {posts.flags} time(s):
|
|
|
|
|
<blockquote class="flag-reporters">
|
|
|
|
|
<ul>
|
|
|
|
|
<!-- BEGIN posts.flagReasons -->
|
|
|
|
|
<li>
|
|
|
|
|
<a target="_blank" href="{config.relative_path}/user/{../user.userslug}">
|
|
|
|
|
<!-- IF ../user.picture -->
|
|
|
|
|
<img src="{../user.picture}" />
|
|
|
|
|
<!-- ELSE -->
|
|
|
|
|
<div class="user-icon" style="background-color: {../user.icon:bgColor};">{../user.icon:text}</div>
|
|
|
|
|
<!-- ENDIF ../user.picture -->
|
|
|
|
|
{../user.username}
|
|
|
|
|
</a>: "{posts.flagReasons.reason}"
|
|
|
|
|
</li>
|
|
|
|
|
<!-- END posts.flagReasons -->
|
|
|
|
|
</ul>
|
|
|
|
|
</blockquote>
|
|
|
|
|
<div class="btn-group">
|
|
|
|
|
<button class="btn btn-sm btn-success dismiss">Dismiss this Flag</button>
|
|
|
|
|
<button class="btn btn-sm btn-danger delete">Delete the Post</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<hr />
|
|
|
|
|
<div class="row">
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
<form role="form">
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="{posts.pid}-assignee">[[topic:flag_manage_assignee]]</label>
|
|
|
|
|
<select class="form-control" id="{posts.pid}-assignee" name="assignee">
|
|
|
|
|
<option value="">No Assignee</option>
|
|
|
|
|
<!-- BEGIN assignees -->
|
|
|
|
|
<option value="{assignees.uid}">{assignees.username}</option>
|
|
|
|
|
<!-- END assignees -->
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="{posts.pid}-state">[[topic:flag_manage_state]]</label>
|
|
|
|
|
<select class="form-control" id="{posts.pid}-state" name="state">
|
|
|
|
|
<option value="open">[[topic:flag_manage_state_open]]</option>
|
|
|
|
|
<option value="wip">[[topic:flag_manage_state_wip]]</option>
|
|
|
|
|
<option value="resolved">[[topic:flag_manage_state_resolved]]</option>
|
|
|
|
|
<option value="rejected">[[topic:flag_manage_state_rejected]]</option>
|
|
|
|
|
</select>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="form-group">
|
|
|
|
|
<label for="{posts.pid}-notes">[[topic:flag_manage_notes]]</label>
|
|
|
|
|
<textarea class="form-control" id="{posts.pid}-notes" name="notes"></textarea>
|
|
|
|
|
</div>
|
|
|
|
|
<button type="button" component="posts/flag/update" class="btn btn-sm btn-primary btn-block">[[topic:flag_manage_update]]</button>
|
|
|
|
|
</form>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-6">
|
|
|
|
|
<h5>[[topic:flag_manage_history]]</h5>
|
|
|
|
|
<!-- IF !posts.flagData.history.length -->
|
|
|
|
|
<div class="alert alert-info">[[topic:flag_manage_no_history]]</div>
|
|
|
|
|
<!-- ELSE -->
|
|
|
|
|
<ul class="list-group" component="posts/flag/history">
|
|
|
|
|
<!-- BEGIN posts.flagData.history -->
|
|
|
|
|
<li class="list-group-item">
|
|
|
|
|
<div class="pull-right"><small><span class="timeago" title="{posts.flagData.history.timestampISO}"></span></small></div>
|
|
|
|
|
<!-- IF ../user.picture -->
|
|
|
|
|
<img class="avatar avatar-sm avatar-rounded" src="{../user.picture}" title="{../user.username}" />
|
|
|
|
|
<!-- ELSE -->
|
|
|
|
|
<div class="avatar avatar-sm avatar-rounded" style="background-color: {../user.icon:bgColor};" title="{../user.username}">{../user.icon:text}</div>
|
|
|
|
|
<!-- ENDIF ../user.picture -->
|
|
|
|
|
[[topic:flag_manage_history_{posts.flagData.history.type}, {posts.flagData.history.label}]]
|
|
|
|
|
</li>
|
|
|
|
|
<!-- END posts.flagData.history -->
|
|
|
|
|
</ul>
|
|
|
|
|
<!-- ENDIF !posts.flagData.history.length -->
|
|
|
|
|
</div>
|
|
|
|
|
<small>
|
|
|
|
|
<span class="pull-right">
|
|
|
|
|
Posted in <a href="{config.relative_path}/category/{posts.category.slug}" target="_blank"><i class="fa {posts.category.icon}"></i> {posts.category.name}</a>, <span class="timeago" title="{posts.timestampISO}"></span> •
|
|
|
|
|
<a href="{config.relative_path}/topic/{posts.topic.slug}/{posts.index}" target="_blank">Read More</a>
|
|
|
|
|
</span>
|
|
|
|
|
</small>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
<div class="col-sm-4">
|
|
|
|
|
<i class="fa fa-flag"></i> This post has been flagged {posts.flags} time(s):
|
|
|
|
|
<blockquote class="flag-reporters">
|
|
|
|
|
<ul>
|
|
|
|
|
<!-- BEGIN posts.flagReasons -->
|
|
|
|
|
<li>
|
|
|
|
|
<a target="_blank" href="{config.relative_path}/user/{../user.userslug}">
|
|
|
|
|
<!-- IF ../user.picture -->
|
|
|
|
|
<img src="{../user.picture}" />
|
|
|
|
|
<!-- ELSE -->
|
|
|
|
|
<div class="user-icon" style="background-color: {../user.icon:bgColor};">{../user.icon:text}</div>
|
|
|
|
|
<!-- ENDIF ../user.picture -->
|
|
|
|
|
{../user.username}
|
|
|
|
|
</a>: "{../reason}"
|
|
|
|
|
</li>
|
|
|
|
|
<!-- END posts.flagReasons -->
|
|
|
|
|
</ul>
|
|
|
|
|
</blockquote>
|
|
|
|
|
<div class="btn-group">
|
|
|
|
|
<button class="btn btn-sm btn-success dismiss">Dismiss this Flag</button>
|
|
|
|
|
<button class="btn btn-sm btn-danger delete">Delete the Post</button>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|