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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/acqui/acqui-home.tt (-14 / +15 lines)
Lines 78-98 Link Here
78
    <h3>All available funds</h3>
78
    <h3>All available funds</h3>
79
79
80
    <div id="BudgetsAndFunds">
80
    <div id="BudgetsAndFunds">
81
    <table id="accounts">
81
        <div class="toolbar btn-toolbar">
82
        <caption>
82
            <span class="actions">
83
          <span class="actions"><a href="#" id="expand_all">Expand all</a>
83
                <a href="#" id="expand_all">Expand all</a> |
84
          | <a href="#" id="collapse_all">Collapse all</a>
84
                <a href="#" id="collapse_all">Collapse all</a> |
85
          | <a href="#" id="hide_inactive">Hide inactive budgets</a>
85
                <a href="#" id="hide_inactive">Hide inactive budgets</a> |
86
          | <a href="#" id="show_inactive">Show inactive budgets</a>
86
                <a href="#" id="show_inactive">Show inactive budgets</a> |
87
          | <select id="library-filter">
87
                <select id="library-filter">
88
              <option value="">Filter by library</option>
88
                    <option value="">Filter by library</option>
89
              [% FOREACH b IN Branches.all %]
89
                    [% FOREACH b IN Branches.all %]
90
                <option value="[% b.branchname | html %]">[% b.branchname | html %]</option>
90
                        <option value="[% b.branchname | html %]">[% b.branchname | html %]</option>
91
              [% END %]
91
                    [% END %]
92
            </select>
92
                </select>
93
        </span>
93
            </span>
94
        </div>
94
95
95
        </caption>
96
    <table id="accounts">
96
97
97
        <thead>
98
        <thead>
98
        <tr>
99
        <tr>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/admin/aqbudgets.tt (-8 / +10 lines)
Lines 51-65 Link Here
51
51
52
[% IF budgets %]
52
[% IF budgets %]
53
53
54
<table id="budgeth" class="group">
55
    [% UNLESS budget_period_id %]
54
    [% UNLESS budget_period_id %]
56
      <caption>
55
        <div class="toolbar btn-toolbar">
57
        <span class="actions"><a href="#" id="expand_all">Expand all</a>
56
            <span class="actions">
58
        | <a href="#" id="collapse_all">Collapse all</a>
57
                <a href="#" id="expand_all">Expand all</a> |
59
        | <a href="#" id="hide_inactive">Hide inactive budgets</a>
58
                <a href="#" id="collapse_all">Collapse all</a> |
60
        | <a href="#" id="show_inactive">Show inactive budgets</a></span>
59
                <a href="#" id="hide_inactive">Hide inactive budgets</a> |
61
      </caption>
60
                <a href="#" id="show_inactive">Show inactive budgets</a>
61
            </span>
62
        </div>
62
    [% END %]
63
    [% END %]
64
65
<table id="budgeth" class="group">
63
    <thead>
66
    <thead>
64
        <tr>
67
        <tr>
65
            <th>Active</th>
68
            <th>Active</th>
66
- 

Return to bug 27653