View | Details | Raw Unified | Return to bug 16048
Collapse All | Expand All

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/letter.tt (-9 / +5 lines)
Lines 200-207 $(document).ready(function() { Link Here
200
                <th>Code</th>
200
                <th>Code</th>
201
                <th>Name</th>
201
                <th>Name</th>
202
                <th>Copy notice</th>
202
                <th>Copy notice</th>
203
                <th>&nbsp;</th>
203
                <th>Actions</th>
204
                <th>&nbsp;</th>
205
              </tr>
204
              </tr>
206
            </thead>
205
            </thead>
207
            <tbody>
206
            <tbody>
Lines 224-241 $(document).ready(function() { Link Here
224
                        [% ELSE %]
223
                        [% ELSE %]
225
                          [% select_for_copy %]
224
                          [% select_for_copy %]
226
                        [% END %]
225
                        [% END %]
227
                        <input type="submit" value="Copy" />
226
                        <button class="btn btn-mini"><i class="fa fa-clone"></i> Copy</button>
228
                      </form>
227
                      </form>
229
                    [% END %]
228
                    [% END %]
230
                  </td>
229
                  </td>
231
                  <td>
230
                  <td style="white-space: nowrap">
232
                    [% IF can_edit %]
231
                    [% IF can_edit %]
233
                      <a href="/cgi-bin/koha/tools/letter.pl?op=add_form&amp;branchcode=[% lette.branchcode %]&amp;module=[% lette.module %]&amp;code=[% lette.code %]">Edit</a>
232
                      <a class="btn btn-mini" href="/cgi-bin/koha/tools/letter.pl?op=add_form&amp;branchcode=[% lette.branchcode %]&amp;module=[% lette.module %]&amp;code=[% lette.code %]"><i class="fa fa-pencil"></i> Edit</a>
234
                    [% END %]
233
                    [% END %]
235
                  </td>
236
                  <td>
237
                    [% IF !lette.protected && can_edit %]
234
                    [% IF !lette.protected && can_edit %]
238
                      <a href="/cgi-bin/koha/tools/letter.pl?op=delete_confirm&amp;branchcode=[%lette.branchcode %]&amp;module=[% lette.module %]&amp;code=[% lette.code %]">Delete</a>
235
                      <a class="btn btn-mini" href="/cgi-bin/koha/tools/letter.pl?op=delete_confirm&amp;branchcode=[%lette.branchcode %]&amp;module=[% lette.module %]&amp;code=[% lette.code %]"><i class="fa fa-trash"></i> Delete</a>
239
                    [% END %]
236
                    [% END %]
240
                  </td>
237
                  </td>
241
                </tr>
238
                </tr>
242
- 

Return to bug 16048