Lines 122-127
Link Here
|
122 |
|
122 |
|
123 |
<form id="ar-branchcode-form" method="post"> |
123 |
<form id="ar-branchcode-form" method="post"> |
124 |
<select name="branchcode" id="branchcode"> |
124 |
<select name="branchcode" id="branchcode"> |
|
|
125 |
<option value="">All libraries</option> |
125 |
[% FOREACH b IN Branches.all %] |
126 |
[% FOREACH b IN Branches.all %] |
126 |
[% IF b.branchcode == branchcode %] |
127 |
[% IF b.branchcode == branchcode %] |
127 |
<option value="[% b.branchcode %]" selected="selected">[% b.branchname %]</option> |
128 |
<option value="[% b.branchcode %]" selected="selected">[% b.branchname %]</option> |
Lines 130-136
Link Here
|
130 |
[% END %] |
131 |
[% END %] |
131 |
[% END %] |
132 |
[% END %] |
132 |
</select> |
133 |
</select> |
133 |
<input class="btn btn-small" type="submit" value="Update" /> |
134 |
<button type="submit" class="btn btn-small" type="submit"> |
|
|
135 |
<i class="fa fa-refresh"></i> Update |
136 |
</button> |
134 |
</form> |
137 |
</form> |
135 |
|
138 |
|
136 |
<div id="article-request-tabs" class="toptabs"> |
139 |
<div id="article-request-tabs" class="toptabs"> |
137 |
- |
|
|