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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/suggestion/suggestion.tt (-4 / +3 lines)
Lines 514-520 Link Here
514
    <ul class="ui-tabs-nav">
514
    <ul class="ui-tabs-nav">
515
        [% FOREACH suggestion IN suggestions %]
515
        [% FOREACH suggestion IN suggestions %]
516
                <li>
516
                <li>
517
            <a href="#tab_[% loop.count | uri %]">
517
            <a href="#[% suggestion.suggestiontype | uri %]">
518
            [% IF ( suggestion.suggestiontypelabel ) %]
518
            [% IF ( suggestion.suggestiontypelabel ) %]
519
                [% IF (suggestion.suggestiontypelabel == "Pending") %]Pending
519
                [% IF (suggestion.suggestiontypelabel == "Pending") %]Pending
520
                [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %]Accepted
520
                [% ELSIF (suggestion.suggestiontypelabel == "Accepted") %]Accepted
Lines 538-545 Link Here
538
[% END %]
538
[% END %]
539
539
540
[% FOREACH suggestion IN suggestions %]
540
[% FOREACH suggestion IN suggestions %]
541
<div id="tab_[% loop.count | html %]">
541
<div id="[% suggestion.suggestiontype | html %]">
542
<form class="update_suggestions" name="f" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#tab_[% loop.count | html %]">
542
<form class="update_suggestions" name="f" method="post" action="/cgi-bin/koha/suggestion/suggestion.pl#[% suggestion.suggestiontype| uri %]">
543
543
544
[% IF ( suggestion.suggestions_loop ) %]
544
[% IF ( suggestion.suggestions_loop ) %]
545
<p><a class="checkall" href="#">Check all</a> | <a class="uncheckall" href="#">Uncheck all</a></p>
545
<p><a class="checkall" href="#">Check all</a> | <a class="uncheckall" href="#">Uncheck all</a></p>
546
- 

Return to bug 25041