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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/serials_stats.tt (-1 / +5 lines)
Lines 121-127 Link Here
121
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
121
            <label for="outputfile">To a file:</label> <input type="radio" name="output" value="file" id="outputfile" />
122
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
122
            <label class="inline" for="basename">Named: </label><input type="text" name="basename" id="basename" value="Export" />
123
            <label class="inline" for="MIME">Into an application</label>
123
            <label class="inline" for="MIME">Into an application</label>
124
            [% CGIextChoice %]
124
            <select name="MIME" id="MIME" size="1">
125
            [% FOREACH value IN CGIextChoice %]
126
                <option value="[% value %]">[% value %]</option>
127
            [% END %]
128
            </select>
125
            <select name="sep" id="sep" size="1">
129
            <select name="sep" id="sep" size="1">
126
            [% FOREACH value IN CGIsepChoice.values.sort() %]
130
            [% FOREACH value IN CGIsepChoice.values.sort() %]
127
              [% IF ( value == CGIsepChoice.default ) %]
131
              [% IF ( value == CGIsepChoice.default ) %]
(-)a/reports/serials_stats.pl (-7 / +1 lines)
Lines 150-161 if($do_it){ Link Here
150
        push(@booksellers,$row)
150
        push(@booksellers,$row)
151
    }
151
    }
152
152
153
	my $CGIextChoice=CGI::scrolling_list(
153
    my $CGIextChoice = ( 'CSV' ); # FIXME translation
154
				-name => 'MIME',
155
				-id => 'MIME',
156
				-values   => ['CSV'], # FIXME translation
157
				-size     => 1,
158
				-multiple => 0 );
159
	my $CGIsepChoice=GetDelimiterChoices;
154
	my $CGIsepChoice=GetDelimiterChoices;
160
	$template->param(
155
	$template->param(
161
		CGIextChoice => $CGIextChoice,
156
		CGIextChoice => $CGIextChoice,
162
- 

Return to bug 12706