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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/discharge.tt (-2 / +4 lines)
Lines 23-33 Link Here
23
        <div class="col-sm-10 col-sm-push-2">
23
        <div class="col-sm-10 col-sm-push-2">
24
            <main>
24
            <main>
25
25
26
<h3>Discharge</h3>
26
[% INCLUDE 'members-toolbar.inc' %]
27
28
<h1>Discharge</h1>
27
[% FOR message IN messages %]
29
[% FOR message IN messages %]
28
    <div class="dialog [% message.type | html %]">
30
    <div class="dialog [% message.type | html %]">
29
    [% IF message.code == "unable_to_generate_pdf" %]
31
    [% IF message.code == "unable_to_generate_pdf" %]
30
        An error occurs when generating the pdf file.
32
        An error occurs when generating the PDF file.
31
        Please contact the administrator to resolve this problem.
33
        Please contact the administrator to resolve this problem.
32
    [% END %]
34
    [% END %]
33
    </div>
35
    </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/housebound.tt (-1 / +1 lines)
Lines 28-34 Link Here
28
        [% INCLUDE 'members-toolbar.inc' %]
28
        [% INCLUDE 'members-toolbar.inc' %]
29
29
30
          <!-- Title -->
30
          <!-- Title -->
31
          <h3>Housebound details for [% INCLUDE 'patron-title.inc' %]</h3>
31
          <h1>Housebound details for [% INCLUDE 'patron-title.inc' %]</h1>
32
32
33
            [% FOR m IN messages %]
33
            [% FOR m IN messages %]
34
                <div class="dialog [% m.type | html %]">
34
                <div class="dialog [% m.type | html %]">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/ill-requests.tt (-1 / +4 lines)
Lines 27-33 Link Here
27
    <div class="row">
27
    <div class="row">
28
        <div class="col-sm-10 col-sm-push-2">
28
        <div class="col-sm-10 col-sm-push-2">
29
            <main>
29
            <main>
30
                <h2>ILL requests history</h2>
30
                [% INCLUDE 'members-toolbar.inc' %]
31
                <h1>ILL requests history</h1>
31
                [% INCLUDE 'ill-list-table.inc' %]
32
                [% INCLUDE 'ill-list-table.inc' %]
32
            </main>
33
            </main>
33
        </div> <!-- .col-sm-10.col-sm-push-2 -->
34
        </div> <!-- .col-sm-10.col-sm-push-2 -->
Lines 40-45 Link Here
40
    </div> <!-- .row -->
41
    </div> <!-- .row -->
41
42
42
    [% MACRO jsinclude BLOCK %]
43
    [% MACRO jsinclude BLOCK %]
44
        [% INCLUDE 'str/members-menu.inc' %]
45
        [% Asset.js("js/members-menu.js") | $raw %]
43
        [% INCLUDE 'datatables.inc' %]
46
        [% INCLUDE 'datatables.inc' %]
44
        [% INCLUDE 'columns_settings.inc' %]
47
        [% INCLUDE 'columns_settings.inc' %]
45
        [% INCLUDE 'calendar.inc' %]
48
        [% INCLUDE 'calendar.inc' %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/purchase-suggestions.tt (-1 / +2 lines)
Lines 25-31 Link Here
25
        <div class="col-sm-10 col-sm-push-2">
25
        <div class="col-sm-10 col-sm-push-2">
26
            <main>
26
            <main>
27
27
28
                <h2>Purchase suggestions</h2>
28
                [% INCLUDE 'members-toolbar.inc' %]
29
                <h1>Purchase suggestions</h1>
29
30
30
                <div id="toolbar" class="btn-toolbar">
31
                <div id="toolbar" class="btn-toolbar">
31
                    <a class="btn btn-default" id="newsuggestion" href="/cgi-bin/koha/suggestion/suggestion.pl?op=add&amp;suggestedby=[% patron.borrowernumber | html %]&amp;redirect=purchase_suggestions&amp;borrowernumber=[% patron.borrowernumber | html %]"><i class="fa fa-plus"></i> New purchase suggestion</a>
32
                    <a class="btn btn-default" id="newsuggestion" href="/cgi-bin/koha/suggestion/suggestion.pl?op=add&amp;suggestedby=[% patron.borrowernumber | html %]&amp;redirect=purchase_suggestions&amp;borrowernumber=[% patron.borrowernumber | html %]"><i class="fa fa-plus"></i> New purchase suggestion</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/statistics.tt (-2 / +1 lines)
Lines 30-36 Link Here
30
30
31
        [% INCLUDE 'members-toolbar.inc' %]
31
        [% INCLUDE 'members-toolbar.inc' %]
32
32
33
            <h3>Statistics for [% INCLUDE 'patron-title.inc' %]</h3>
33
            <h1>Statistics for [% INCLUDE 'patron-title.inc' %]</h1>
34
            [% IF ( datas.size ) %]
34
            [% IF ( datas.size ) %]
35
                <table id="statistics">
35
                <table id="statistics">
36
                <thead>
36
                <thead>
37
- 

Return to bug 21211