]> git.mxchange.org Git - friendica.git/blob - view/theme/frio/templates/profile/schedule.tpl
Fix review points
[friendica.git] / view / theme / frio / templates / profile / schedule.tpl
1 <div class="generic-page-wrapper">
2         {{* include the title template for the settings title *}}
3         {{include file="section_title.tpl" title=$title}}
4         <table id="application-block" class="table table-condensed table-striped">
5                 <thead>
6                         <tr>
7                                 <th>{{$scheduled_at}}</th>
8                                 <th>{{$content}}</th>
9                         </tr>
10                 </thead>
11                 <tbody>
12                         {{foreach $schedule as $row}}
13                         <tr>
14                                 <td>{{$row.scheduled_at}}</td>
15                                 <td>{{$row.content}}</td>
16                                 <td>
17                                         <form action="{{$baseurl}}/profile/{{$nickname}}/schedule" method="post">
18                                                 <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
19                                                 <button class="btn btn-default" type="submit" name="delete" value="{{$row.id}}" title="{{$delete}}">
20                                                         <i class="fa fa-trash" aria-hidden="true"></i>
21                                                 </button>
22                                         </form>
23                                 </td>
24                         </tr>
25                         {{/foreach}}
26                 </tbody>
27         </table>
28 </div>