]> git.mxchange.org Git - friendica.git/blob - view/templates/profile/schedule.tpl
Merge remote-tracking branch 'upstream/2022.12-rc' into diaspora-reshare
[friendica.git] / view / templates / profile / schedule.tpl
1 <div class="generic-page-wrapper">
2         <h1>{{$title}}</h1>
3         <table id="application-block" class="table table-condensed table-striped">
4                 <thead>
5                         <tr>
6                                 <th>{{$scheduled_at}}</th>
7                                 <th>{{$content}}</th>
8                         </tr>
9                 </thead>
10                 <tbody>
11                         {{foreach $schedule as $row}}
12                         <tr>
13                                 <td>{{$row.scheduled_at}}</td>
14                                 <td>{{$row.content}}</td>
15                                 <td>
16                                         <form action="{{$baseurl}}/profile/{{$nickname}}/schedule" method="post">
17                                                 <input type="hidden" name="form_security_token" value="{{$form_security_token}}">
18                                                 <button type="submit" name="delete" value="{{$row.id}}" title="{{$delete}}" class="icon s22 delete"></button>
19                                         </form>
20                                 </td>
21                         </tr>
22                         {{/foreach}}
23                 </tbody>
24         </table>
25 </div>