You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
48 lines
1.4 KiB
Smarty
48 lines
1.4 KiB
Smarty
8 years ago
|
<div class="row">
|
||
|
<div class="col-sm-4 col-md-3">
|
||
|
<!-- IMPORT partials/flags/quick-filters.tpl -->
|
||
|
</div>
|
||
|
<div class="col-sm-6 col-md-9">
|
||
|
<h2>
|
||
|
{target_readable}
|
||
|
<small><span class="timeago" title="{datetimeISO}"></span></small>
|
||
|
</h2>
|
||
|
|
||
|
<hr />
|
||
|
|
||
|
<div class="media">
|
||
|
<div class="media-left">
|
||
|
<a href="#">
|
||
|
<!-- IF target.user.picture -->
|
||
|
<img class="media-object avatar avatar-md" src="{target.user.picture}" alt="{target.user.username}" />
|
||
|
<!-- ELSE -->
|
||
|
<div class="media-object avatar avatar-md" style="background-color: {target.user.icon:bgColor}">{target.user.icon:text}</div>
|
||
|
<!-- ENDIF target.user.picture -->
|
||
|
</a>
|
||
|
</div>
|
||
|
<div class="media-body">
|
||
|
<h4 class="media-heading"><a href="{config.relative_path}/user/{target.user.userslug}">{target.user.username}</a></h4>
|
||
|
{target.content}
|
||
|
</div>
|
||
|
</div>
|
||
|
|
||
|
<hr />
|
||
|
|
||
|
<div class="row">
|
||
|
<div class="col-sm-6">
|
||
|
<form role="form">
|
||
|
<div class="form-group">
|
||
|
<label for="state">[[flags:state]]</label>
|
||
|
<select class="form-control" name="state">
|
||
|
<option value="open">[[flags:state-open]]</option>
|
||
|
<option value="wip">[[flags:state-wip]]</option>
|
||
|
<option value="resolved">[[flags:state-resolved]]</option>
|
||
|
<option value="rejected">[[flags:state-rejected]]</option>
|
||
|
</select>
|
||
|
</div>
|
||
|
</form>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|
||
|
</div>
|