]> git.mxchange.org Git - friendica.git/blob - view/templates/profile/schedule.tpl
Scheduled posts are now listed and can be deleted
[friendica.git] / view / templates / profile / schedule.tpl
1 <div class="generic-page-wrapper">
2         <h1>{{$title}}</h1>
3         <form action="profile/{{$nickname}}/schedule" method="post" autocomplete="off">
4                 <input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
5                 <table id='application-block' class='table table-condensed table-striped'>
6                         <thead>
7                                 <tr>
8                                         <th>{{$scheduled_at}}</th>
9                                         <th>{{$content}}</th>
10                                 </tr>
11                         </thead>
12                         <tbody>
13                                 {{foreach $schedule as $entry}}
14                                 <tr>
15                                         <td>{{$entry.scheduled_at}}</td>
16                                         <td>{{$entry.content}}</td>
17                                         <td><a href="{{$baseurl}}/profile/{{$nickname}}/schedule/delete/{{$entry.id}}?t={{$form_security_token}}" class="icon s22 delete" title="{{$delete}}">&nbsp;</a></td>
18                                 </tr>
19                                 {{/foreach}}
20                         </tbody>
21                 </table>
22         </form>
23 </div>