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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/tools/csv-profiles.tt (-4 / +3 lines)
Lines 133-139 function reloadPage(p) { Link Here
133
                [% END %]
133
                [% END %]
134
                <li>
134
                <li>
135
                    <label for="profile" class="required">Profile name: </label>
135
                    <label for="profile" class="required">Profile name: </label>
136
                    <input type="text" name="profile" id="profile" value="[% csv_profile.profile %]" class="required">
136
                    <input type="text" name="profile" id="profile" value="[% csv_profile.profile | html %]" class="required">
137
                    <span class="required">Required</span>
137
                    <span class="required">Required</span>
138
                </li>
138
                </li>
139
                <li>
139
                <li>
Lines 175-181 function reloadPage(p) { Link Here
175
                </li>
175
                </li>
176
                <li>
176
                <li>
177
                    <label for="description">Profile description: </label>
177
                    <label for="description">Profile description: </label>
178
                    <textarea cols="50" rows="2" name="description" id="description">[% csv_profile.description %]</textarea>
178
                    <textarea cols="50" rows="2" name="description" id="description">[% csv_profile.description | html %]</textarea>
179
                </li>
179
                </li>
180
                <li>
180
                <li>
181
                    <label for="csv_separator">CSV separator: </label>
181
                    <label for="csv_separator">CSV separator: </label>
Lines 240-246 function reloadPage(p) { Link Here
240
[% IF op == 'delete_confirm' %]
240
[% IF op == 'delete_confirm' %]
241
    <div class="dialog alert">
241
    <div class="dialog alert">
242
        [% IF csv_profile %]
242
        [% IF csv_profile %]
243
            <h3>Delete CSV Profile "[% csv_profile.profile %]?"</h3>
243
            <h3>Delete CSV Profile "[% csv_profile.profile | html %]?"</h3>
244
            <form action="/cgi-bin/koha/tools/csv-profiles.pl" method="post">
244
            <form action="/cgi-bin/koha/tools/csv-profiles.pl" method="post">
245
                <input type="hidden" name="op" value="delete_confirmed" />
245
                <input type="hidden" name="op" value="delete_confirmed" />
246
                <input type="hidden" name="export_format_id" value="[% csv_profile.export_format_id %]" />
246
                <input type="hidden" name="export_format_id" value="[% csv_profile.export_format_id %]" />
247
- 

Return to bug 19127