Using "post" when deleting, fixing deleting
This commit is contained in:
parent
686785049e
commit
88e276843e
5 changed files with 72 additions and 53 deletions
|
@ -1,23 +1,27 @@
|
|||
<div class="generic-page-wrapper">
|
||||
<h1>{{$title}}</h1>
|
||||
<form action="profile/{{$nickname}}/schedule" method="post" autocomplete="off">
|
||||
<input type='hidden' name='form_security_token' value='{{$form_security_token}}'>
|
||||
<table id='application-block' class='table table-condensed table-striped'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{$scheduled_at}}</th>
|
||||
<th>{{$content}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{foreach $schedule as $entry}}
|
||||
<tr>
|
||||
<td>{{$entry.scheduled_at}}</td>
|
||||
<td>{{$entry.content}}</td>
|
||||
<td><a href="{{$baseurl}}/profile/{{$nickname}}/schedule/delete/{{$entry.id}}?t={{$form_security_token}}" class="icon s22 delete" title="{{$delete}}"> </a></td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
</tbody>
|
||||
</table>
|
||||
</form>
|
||||
<table id='application-block' class='table table-condensed table-striped'>
|
||||
<thead>
|
||||
<tr>
|
||||
<th>{{$scheduled_at}}</th>
|
||||
<th>{{$content}}</th>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{{foreach $schedule as $entry}}
|
||||
<tr>
|
||||
<td>{{$entry.scheduled_at}}</td>
|
||||
<td>{{$entry.content}}</td>
|
||||
<td>
|
||||
<form action="{{$baseurl}}/profile/{{$nickname}}/schedule" method="post">
|
||||
<input type="hidden" name="form_security_token" value="{{$form_security_token}}">
|
||||
<button type="submit" name="delete" value="{{$row.id}}" title="{{$delete}}">
|
||||
<i class="fa fa-trash" aria-hidden="true">
|
||||
</button>
|
||||
</form>
|
||||
</td>
|
||||
</tr>
|
||||
{{/foreach}}
|
||||
</tbody>
|
||||
</table>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue