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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/reports/catalogue_stats.tt (-6 / +9 lines)
Lines 99-121 Link Here
99
	[% END %]
99
	[% END %]
100
[% ELSE %]
100
[% ELSE %]
101
101
102
	<form method="post" action="/cgi-bin/koha/reports/catalogue_stats.pl">
102
    <form method="post" class="validated" action="/cgi-bin/koha/reports/catalogue_stats.pl">
103
	<fieldset class="rows">
103
	<fieldset class="rows">
104
	<legend>Catalog statistics</legend>
104
	<legend>Catalog statistics</legend>
105
	<table>
105
	<table>
106
		<thead>
106
		<thead>
107
			<tr>
107
			<tr>
108
			<th>Title</th>
108
			<th>Title</th>
109
			<th>Row</th>
109
                        <th><label for="Line" class="required">Row</label>
110
			<th>Column</th>
110
                            <label for="Line" class="error" style="display: none"><br>A row must be selected.</label>
111
                        </th>
112
                        <th><label for="Column" class="required">Column</label>
113
                            <label for="Column" class="error" style="display: none"><br>A column must be selected.</label>
114
                        </th>
111
			<th>Filter</th>
115
			<th>Filter</th>
112
			</tr>
116
			</tr>
113
		</thead>
117
		</thead>
114
		<tbody>
118
		<tbody>
115
      <tr>
119
      <tr>
116
        <td>Koha full call number</td>
120
        <td>Koha full call number</td>
117
        <td><input type="radio" name="Line" value="items.itemcallnumber" /></td>
121
        <td><input type="radio" name="Line" required value="items.itemcallnumber" /></td>
118
        <td><input type="radio" name="Column" value="items.itemcallnumber" /></td>
122
        <td><input type="radio" name="Column" required value="items.itemcallnumber" /></td>
119
        <td><label for="callnoFrom">From</label> <input type="text" name="Filter" id="callnoFrom" /> <label for="callnoTo">To</label> <input type="text" name="Filter" id="callnoTo" /></td>
123
        <td><label for="callnoFrom">From</label> <input type="text" name="Filter" id="callnoFrom" /> <label for="callnoTo">To</label> <input type="text" name="Filter" id="callnoTo" /></td>
120
      </tr>
124
      </tr>
121
     <tr>
125
     <tr>
122
- 

Return to bug 3311