Lines 71-77
var MSG_CONFIRM_DELETE = _("Are you sure you want to delete this dictionary defi
Link Here
|
71 |
<th>Description</th> |
71 |
<th>Description</th> |
72 |
<th>Area</th> |
72 |
<th>Area</th> |
73 |
<th>Definition</th> |
73 |
<th>Definition</th> |
74 |
<th> </th> |
74 |
<th>Action</th> |
75 |
</tr> |
75 |
</tr> |
76 |
[% FOREACH definition IN definitions %] |
76 |
[% FOREACH definition IN definitions %] |
77 |
<tr> |
77 |
<tr> |
Lines 79-88
var MSG_CONFIRM_DELETE = _("Are you sure you want to delete this dictionary defi
Link Here
|
79 |
<td>[% definition.description %]</td> |
79 |
<td>[% definition.description %]</td> |
80 |
<td>[% definition.areaname %]</td> |
80 |
<td>[% definition.areaname %]</td> |
81 |
<td>[% definition.saved_sql %]</td> |
81 |
<td>[% definition.saved_sql %]</td> |
82 |
<td><form method="post" action="/cgi-bin/koha/reports/dictionary.pl"> |
82 |
<td class="actions"><form method="post" action="/cgi-bin/koha/reports/dictionary.pl"> |
83 |
<input type="hidden" name="id" value="[% definition.id %]" /> |
83 |
<input type="hidden" name="id" value="[% definition.id %]" /> |
84 |
<input type="hidden" name="phase" value="Delete Definition" /> |
84 |
<input type="hidden" name="phase" value="Delete Definition" /> |
85 |
<input type="submit" name="submit" value="Delete Definition" onclick="return confirm(MSG_CONFIRM_DELETE);" /> |
85 |
<button type="submit" name="submit" class="btn btn-mini" onclick="return confirm(MSG_CONFIRM_DELETE);"><i class="fa fa-trash"></i> Delete</button> |
86 |
</form></td> |
86 |
</form></td> |
87 |
</tr> |
87 |
</tr> |
88 |
[% END %] |
88 |
[% END %] |
89 |
- |
|
|