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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/serials/claims.tt (-13 / +12 lines)
Lines 192-200 Link Here
192
    </fieldset>
192
    </fieldset>
193
</form>
193
</form>
194
194
195
   [% IF ( missingissues ) %]	
195
   [% IF ( missingissues ) %]
196
    <h3>Missing issues</h3>
196
    <form action="claims.pl" onsubmit="return false;" class="clearfix">
197
    <form action="claims.pl" onsubmit="return false;">
198
	<fieldset class="rows">
197
	<fieldset class="rows">
199
	<legend>Filters :</legend>
198
	<legend>Filters :</legend>
200
	
199
	
Lines 214-219 Link Here
214
	<li>
213
	<li>
215
	    <label for="titlefilter">Title : </label>
214
	    <label for="titlefilter">Title : </label>
216
	    <input id="titlefilter" type="text" />
215
	    <input id="titlefilter" type="text" />
216
    </li>
217
    <li>
217
	    <label for="branchfilter">Library: </label>
218
	    <label for="branchfilter">Library: </label>
218
	    <select id="branchfilter" onchange="filterByBranch();">
219
	    <select id="branchfilter" onchange="filterByBranch();">
219
            [% FOREACH branchloo IN branchloop %]
220
            [% FOREACH branchloo IN branchloop %]
Lines 252-269 Link Here
252
		});
253
		});
253
		//]]>
254
		//]]>
254
	    </script> <span class="hint">[% INCLUDE 'date-format.inc' %]</span>
255
	    </script> <span class="hint">[% INCLUDE 'date-format.inc' %]</span>
255
	    <input type="button" value="OK" onclick="filterByDate();" />
256
        </li>
256
        </li>
257
	
258
	<li>
259
        <input type="reset" value="Clear filters" onclick="clearFilters();" />
260
	</li>
261
	</ol>
257
	</ol>
262
	</fieldset>
258
    <fieldset class="action">
259
        <input type="button" value="Apply filter" onclick="filterByDate();" />
260
        <input type="reset" value="Clear filters" onclick="clearFilters();" />
261
    </fieldset>
262
    </fieldset>
263
    </form>
263
    </form>
264
264
<form action="claims.pl" method="post" class="checkboxed" onsubmit="return checkForm()">
265
    <fieldset>
265
    <fieldset>
266
	<form action="claims.pl" method="post" class="checkboxed" onsubmit="return checkForm()">
266
        <legend>Missing issues</legend>
267
        <input type="hidden" name="order" value="[% order %]" />
267
        <input type="hidden" name="order" value="[% order %]" />
268
         <table id="claimst">
268
         <table id="claimst">
269
                <thead><tr>
269
                <thead><tr>
Lines 328-335 Link Here
328
			</select>
328
			</select>
329
	    <input type="hidden" name="op" value="send_alert" /><input type="submit" name="submit" class="button" value="Send notification" /></fieldset>
329
	    <input type="hidden" name="op" value="send_alert" /><input type="submit" name="submit" class="button" value="Send notification" /></fieldset>
330
            [% END %]
330
            [% END %]
331
        </form>
332
    </fieldset>
331
    </fieldset>
332
</form>
333
[% END %]
333
[% END %]
334
334
335
[% ELSE %]
335
[% ELSE %]
336
- 

Return to bug 8186