2021-08-02 19:03:06 +02:00
|
|
|
<div class="generic-page-wrapper">
|
|
|
|
{{* include the title template for the settings title *}}
|
|
|
|
{{include file="section_title.tpl" title=$title}}
|
2021-08-02 22:38:08 +02:00
|
|
|
<table id="application-block" class="table table-condensed table-striped">
|
2021-08-02 21:18:44 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th>{{$scheduled_at}}</th>
|
|
|
|
<th>{{$content}}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{foreach $schedule as $row}}
|
|
|
|
<tr>
|
|
|
|
<td>{{$row.scheduled_at}}</td>
|
|
|
|
<td>{{$row.content}}</td>
|
|
|
|
<td>
|
|
|
|
<form action="{{$baseurl}}/profile/{{$nickname}}/schedule" method="post">
|
|
|
|
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
2021-08-02 23:47:59 +02:00
|
|
|
<button class="btn btn-default" type="submit" name="delete" value="{{$row.id}}" title="{{$delete}}">
|
|
|
|
<i class="fa fa-trash" aria-hidden="true"></i>
|
2021-08-02 21:18:44 +02:00
|
|
|
</button>
|
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-08-02 19:03:06 +02:00
|
|
|
</div>
|