2021-08-02 19:03:06 +02:00
|
|
|
<div class="generic-page-wrapper">
|
|
|
|
<h1>{{$title}}</h1>
|
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>
|
2021-08-03 14:29:46 +02:00
|
|
|
{{foreach $schedule as $row}}
|
2021-08-02 21:18:44 +02:00
|
|
|
<tr>
|
2021-08-03 14:29:46 +02:00
|
|
|
<td>{{$row.scheduled_at}}</td>
|
|
|
|
<td>{{$row.content}}</td>
|
2021-08-02 21:18:44 +02:00
|
|
|
<td>
|
|
|
|
<form action="{{$baseurl}}/profile/{{$nickname}}/schedule" method="post">
|
|
|
|
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
2021-08-02 23:36:27 +02:00
|
|
|
<button type="submit" name="delete" value="{{$row.id}}" title="{{$delete}}" class="icon s22 delete"></button>
|
2021-08-02 21:18:44 +02:00
|
|
|
</form>
|
|
|
|
</td>
|
|
|
|
</tr>
|
|
|
|
{{/foreach}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
2021-08-02 19:03:06 +02:00
|
|
|
</div>
|