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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/borrowers_stats.tt (-10 / +9 lines)
Lines 63-69 Link Here
63
	[% END %]
63
	[% END %]
64
[% ELSE %]
64
[% ELSE %]
65
65
66
	<form name="configure_report" id="configure_report" method="post" action="/cgi-bin/koha/reports/borrowers_stats.pl">
66
    <form name="configure_report" id="configure_report" method="post" action="/cgi-bin/koha/reports/borrowers_stats.pl">
67
	<fieldset class="rows"><legend>Patrons statistics</legend>
67
	<fieldset class="rows"><legend>Patrons statistics</legend>
68
	<table>
68
	<table>
69
		<thead>
69
		<thead>
Lines 81-88 Link Here
81
		<tbody>
81
		<tbody>
82
            <tr>
82
            <tr>
83
			<td>Patron category</td>
83
			<td>Patron category</td>
84
			<td><input type="radio" name="Line" required value="categorycode" /></td>
84
                <td><input type="radio" name="Line" required value="categorycode" /></td>
85
			<td><input type="radio" name="Column" required value="categorycode" /></td>
85
                <td><input type="radio" name="Column" required value="categorycode" /></td>
86
            <td>
86
            <td>
87
                <select name="Filter"  size="1" id="catcode">
87
                <select name="Filter"  size="1" id="catcode">
88
                    <option value="">Not filtered by category</option>
88
                    <option value="">Not filtered by category</option>
Lines 95-101 Link Here
95
			<tr>
95
			<tr>
96
			<td>Patron status</td>
96
			<td>Patron status</td>
97
			<td colspan="2"></td>
97
			<td colspan="2"></td>
98
			<td ><select name="status"><option value="">Not filtered by status</option><option value="debarred">restricted</option><option value="gonenoadress">gone no address</option><option value="lost">lost</option></select></td>
98
                <td ><select name="status"><option value="">Not filtered by status</option><option value="debarred">restricted</option><option value="gonenoadress">gone no address</option><option value="lost">lost</option></select></td>
99
			</tr>
99
			</tr>
100
            <tr>
100
            <tr>
101
			<td>Patron activity</td>
101
			<td>Patron activity</td>
Lines 106-112 Link Here
106
			</select>
106
			</select>
107
			<label for="period">years of activity</label> 
107
			<label for="period">years of activity</label> 
108
			</td>
108
			</td>
109
			<td><select name="activity"><option value="">Not filtered by activity</option><option value="active">active</option><option value="nonactive">no active</option></select></td>
109
                        <td><select name="activity"><option value="">Not filtered by activity</option><option value="active">active</option><option value="nonactive">no active</option></select></td>
110
			</tr>
110
			</tr>
111
111
112
			<tr>
112
			<tr>
Lines 114-120 Link Here
114
			<td><input type="radio" name="Line" value="zipcode" /></td>
114
			<td><input type="radio" name="Line" value="zipcode" /></td>
115
			<td><input type="radio" name="Column" value="zipcode" /></td>
115
			<td><input type="radio" name="Column" value="zipcode" /></td>
116
			<td><select name="Filter"  size="1" id="zipcode">
116
			<td><select name="Filter"  size="1" id="zipcode">
117
				<option value="">Not filtered by ZIP/Postal code</option>
117
                                <option value="">Not filtered by ZIP/Postal code</option>
118
				[% FOREACH ZIP_LOO IN ZIP_LOOP %]
118
				[% FOREACH ZIP_LOO IN ZIP_LOOP %]
119
				<option value="[% ZIP_LOO.zipcode %]">[% ZIP_LOO.zipcode %]</option>
119
				<option value="[% ZIP_LOO.zipcode %]">[% ZIP_LOO.zipcode %]</option>
120
				[% END %]
120
				[% END %]
Lines 123-129 Link Here
123
			</tr>
123
			</tr>
124
			<tr>
124
			<tr>
125
			<td colspan="2"><select name="digits" id="digits">
125
			<td colspan="2"><select name="digits" id="digits">
126
			<option value="">Not filtered by digits</option>
126
                        <option value="">Not filtered by digits</option>
127
			<option value ="1">1</option>
127
			<option value ="1">1</option>
128
			<option value ="2">2</option>
128
			<option value ="2">2</option>
129
			<option value ="3">3</option>
129
			<option value ="3">3</option>
Lines 180-186 Link Here
180
				<td><input type="radio" name="Column" value="sort1" /></td>
180
				<td><input type="radio" name="Column" value="sort1" /></td>
181
				<td>
181
				<td>
182
					<select id="sort1" size="1" name="Filter">
182
					<select id="sort1" size="1" name="Filter">
183
					<option value="">Not filtered by Sort1</option>
183
                                        <option value="">Not filtered by Sort1</option>
184
					[% FOREACH SORT1_LOO IN SORT1_LOOP %]
184
					[% FOREACH SORT1_LOO IN SORT1_LOOP %]
185
						<option value="[% SORT1_LOO.authorized_value %]">[% SORT1_LOO.lib %]</option>
185
						<option value="[% SORT1_LOO.authorized_value %]">[% SORT1_LOO.lib %]</option>
186
					[% END %]
186
					[% END %]
Lines 199-205 Link Here
199
				<td><input type="radio" name="Column" value="sort2" /></td>
199
				<td><input type="radio" name="Column" value="sort2" /></td>
200
				<td>
200
				<td>
201
					<select id="sort2" size="1" name="Filter">
201
					<select id="sort2" size="1" name="Filter">
202
					<option value="">Not filtered by Sort2</option>
202
                                        <option value="">Not filtered by Sort2</option>
203
					[% FOREACH SORT2_LOO IN SORT2_LOOP %]
203
					[% FOREACH SORT2_LOO IN SORT2_LOOP %]
204
						<option value="[% SORT2_LOO.value %]">[% SORT2_LOO.value %]</option>
204
						<option value="[% SORT2_LOO.value %]">[% SORT2_LOO.value %]</option>
205
					[% END %]
205
					[% END %]
206
- 

Return to bug 3311