Lines 209-215
td input,td input[type="submit"] { font-size: 85%; padding: 1px; }
Link Here
|
209 |
<tr> |
209 |
<tr> |
210 |
<td class="count">[% offset + loop.count %] |
210 |
<td class="count">[% offset + loop.count %] |
211 |
</td> |
211 |
</td> |
212 |
<td><span><input type="checkbox" value="[% tagloo.term %]" name="tags" [% IF ( approved == 0 ) %] class="pending"[% END %] /></span> |
212 |
[% IF ( approved == 0 ) %]<td><span><input type="checkbox" value="[% tagloo.term %]" name="tags" class="pending" /></span> |
|
|
213 |
[% ELSE %]<td><span><input type="checkbox" value="[% tagloo.term %]" name="tags" /></span>[% END %] |
213 |
</td> |
214 |
</td> |
214 |
[% IF ( tagloo.approved == -1 ) %]<td class="red">rejected |
215 |
[% IF ( tagloo.approved == -1 ) %]<td class="red">rejected |
215 |
[% ELSIF ( tagloo.approved == 1 ) %]<td class="green"><img alt="OK" src="/intranet-tmpl/prog/img/approve.gif" /> |
216 |
[% ELSIF ( tagloo.approved == 1 ) %]<td class="green"><img alt="OK" src="/intranet-tmpl/prog/img/approve.gif" /> |
Lines 304-314
td input,td input[type="submit"] { font-size: 85%; padding: 1px; }
Link Here
|
304 |
<ol> |
305 |
<ol> |
305 |
<li><label for="tag">Term</label> <input type="text" name="tag" id="tag" value="[% filter_tag %]" /> |
306 |
<li><label for="tag">Term</label> <input type="text" name="tag" id="tag" value="[% filter_tag %]" /> |
306 |
</li> |
307 |
</li> |
307 |
<li><label for="approved">Status</label> <select name="approved" id="approved"> |
308 |
<li><label for="approved">Status</label> |
308 |
<option [% IF ( filter_approved_all ) %]selected="selected" [% END %]value="all">all</option> |
309 |
<select name="approved" id="approved"> |
309 |
<option [% IF ( filter_approved_ok ) %]selected="selected" [% END %]value="1">approved</option> |
310 |
[% IF ( filter_approved_all ) %]<option selected="selected" value="all">all</option> |
310 |
<option [% IF ( filter_approved_pending ) %]selected="selected" [% END %]value="0">pending</option> |
311 |
[% ELSE %]<option value="all">all</option>[% END %] |
311 |
<option [% IF ( filter_approved_rej ) %]selected="selected" [% END %]value="-1">rejected</option> |
312 |
[% IF ( filter_approved_ok ) %]<option selected="selected" value="1">approved</option> |
|
|
313 |
[% ELSE %]<option value="1">approved</option>[% END %] |
314 |
[% IF ( filter_approved_pending ) %]<option selected="selected" value="0">pending</option> |
315 |
[% ELSE %]<option value="0">pending</option>[% END %] |
316 |
[% IF ( filter_approved_rej ) %]<option selected="selected" value="-1">rejected</option> |
317 |
[% ELSE %]<option value="-1">rejected</option>[% END %] |
312 |
</select> |
318 |
</select> |
313 |
</li> |
319 |
</li> |
314 |
<li><label for="approver">Reviewer</label> <input type="text" name="approver" id="approver" value="[% filter_approver %]" /> |
320 |
<li><label for="approver">Reviewer</label> <input type="text" name="approver" id="approver" value="[% filter_approver %]" /> |
315 |
- |
|
|