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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt (-5 / +5 lines)
Lines 273-280 function reloadPage(p) { Link Here
273
                <th>CSV separator</th>
273
                <th>CSV separator</th>
274
                <th>CSV type</th>
274
                <th>CSV type</th>
275
                <th>Usage</th>
275
                <th>Usage</th>
276
                <th>&nbsp;</th>
276
                <th>Actions</th>
277
                <th>&nbsp;</th>
278
            </thead>
277
            </thead>
279
            <tbody>
278
            <tbody>
280
                [% FOREACH csv_profile IN csv_profiles %]
279
                [% FOREACH csv_profile IN csv_profiles %]
Lines 286-293 function reloadPage(p) { Link Here
286
                    <td>[% csv_profile.csv_separator %]</td>
285
                    <td>[% csv_profile.csv_separator %]</td>
287
                    <td>[% PROCESS type_description type_code = csv_profile.type %]</td>
286
                    <td>[% PROCESS type_description type_code = csv_profile.type %]</td>
288
                    <td>[% PROCESS used_for_description used_for_code = csv_profile.used_for %]</td>
287
                    <td>[% PROCESS used_for_description used_for_code = csv_profile.used_for %]</td>
289
                    <td><a href="/cgi-bin/koha/tools/csv-profiles.pl?op=add_form&amp;export_format_id=[% csv_profile.export_format_id %]">Edit</a></td>
288
                    <td class="actions">
290
                    <td><a href="/cgi-bin/koha/tools/csv-profiles.pl?op=delete_confirm&amp;export_format_id=[% csv_profile.export_format_id %]">Delete</a></td>
289
                        <a href="/cgi-bin/koha/tools/csv-profiles.pl?op=add_form&amp;export_format_id=[% csv_profile.export_format_id %]" class="btn btn-default btn-xs"><i class="fa fa-pencil"></i> Edit</a>
290
                        <a href="/cgi-bin/koha/tools/csv-profiles.pl?op=delete_confirm&amp;export_format_id=[% csv_profile.export_format_id %]" class="btn btn-default btn-xs"><i class="fa fa-trash"></i> Delete</a>
291
                    </td>
291
                </tr>
292
                </tr>
292
                [% END %]
293
                [% END %]
293
            </tbody>
294
            </tbody>
294
- 

Return to bug 18917