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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/club-enrollments.tt (-1 / +2 lines)
Lines 1-6 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[% USE Branches %]
2
[% USE Branches %]
3
[% USE Koha %]
3
[% USE Koha %]
4
[% USE HtmlTags %]
4
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Koha &rsaquo; Tools &rsaquo; Patron clubs &rsaquo; Club enrollments</title>
7
<title>Koha &rsaquo; Tools &rsaquo; Patron clubs &rsaquo; Club enrollments</title>
Lines 17-23 Link Here
17
   <div id="bd">
18
   <div id="bd">
18
        <div id="yui-main">
19
        <div id="yui-main">
19
            <div class="yui-b">
20
            <div class="yui-b">
20
                <h1>Club enrollments for <i>[% club.name %]</i></h1>
21
                <h1>Club enrollments for [% club.name | $HtmlTags tag='i' %]</h1>
21
22
22
                <table id="enrollments-table">
23
                <table id="enrollments-table">
23
                    <thead>
24
                    <thead>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs-add-modify.tt (-4 / +5 lines)
Lines 2-7 Link Here
2
[% USE Branches %]
2
[% USE Branches %]
3
[% USE AuthorisedValues %]
3
[% USE AuthorisedValues %]
4
[% SET AuthorisedValuesCategories = AuthorisedValues.GetCategories %]
4
[% SET AuthorisedValuesCategories = AuthorisedValues.GetCategories %]
5
[% USE HtmlTags %]
5
[% SET footerjs = 1 %]
6
[% SET footerjs = 1 %]
6
[% INCLUDE 'doc-head-open.inc' %]
7
[% INCLUDE 'doc-head-open.inc' %]
7
<title>Koha &rsaquo; Tools &rsaquo; Patron clubs &rsaquo;
8
<title>Koha &rsaquo; Tools &rsaquo; Patron clubs &rsaquo;
Lines 19-27 Link Here
19
[% INCLUDE 'cat-search.inc' %]
20
[% INCLUDE 'cat-search.inc' %]
20
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; <a href="clubs.pl">Patron clubs</a> &rsaquo;
21
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; <a href="clubs.pl">Patron clubs</a> &rsaquo;
21
    [% IF club %]
22
    [% IF club %]
22
        Modify club <i>[% club.name %]</i>
23
        <span>Modify club [% club.name | $HtmlTags tag='i' %]</span>
23
    [% ELSE %]
24
    [% ELSE %]
24
        Create a new <i>[% club_template.name %]</i> club
25
        <span>Create a new [% club_template.name | $HtmlTags tag='i' %] club</span>
25
    [% END %]
26
    [% END %]
26
</div>
27
</div>
27
28
Lines 37-45 Link Here
37
38
38
                    <legend>
39
                    <legend>
39
                        [% IF club %]
40
                        [% IF club %]
40
                            Modify club <i>[% club.name %]</i>
41
                            <span>Modify club [% club.name | $HtmlTags tag='i' %]</span>
41
                        [% ELSE %]
42
                        [% ELSE %]
42
                            Create a new <i>[% club_template.name %]</i> club
43
                            <span>Create a new [% club_template.name | $HtmlTags tag='i' %] club</span>
43
                        [% END %]
44
                        [% END %]
44
                    </legend>
45
                    </legend>
45
46
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/clubs.tt (-4 / +5 lines)
Lines 1-6 Link Here
1
[% USE KohaDates %]
1
[% USE KohaDates %]
2
[% USE Branches %]
2
[% USE Branches %]
3
[% USE Koha %]
3
[% USE Koha %]
4
[% USE HtmlTags %]
4
[% SET footerjs = 1 %]
5
[% SET footerjs = 1 %]
5
[% INCLUDE 'doc-head-open.inc' %]
6
[% INCLUDE 'doc-head-open.inc' %]
6
<title>Koha &rsaquo; Tools &rsaquo; Patron clubs</title>
7
<title>Koha &rsaquo; Tools &rsaquo; Patron clubs</title>
Lines 23-39 Link Here
23
                [% IF club_template %]
24
                [% IF club_template %]
24
                    <div class="dialog message">
25
                    <div class="dialog message">
25
                        [% IF stored == 'updated' %]
26
                        [% IF stored == 'updated' %]
26
                            <p>Club template <i>[% club_template.name %]</i> was updated.</p>
27
                            <p>Club template [% club_template.name | $HtmlTags tag='i' %] was updated.</p>
27
                        [% ELSE %]
28
                        [% ELSE %]
28
                            <p>Club template <i>[% club_template.name %]</i> was saved.</p>
29
                            <p>Club template [% club_template.name | $HtmlTags tag='i' %] was saved.</p>
29
                        [% END %]
30
                        [% END %]
30
                    </div>
31
                    </div>
31
                [% ELSIF club %]
32
                [% ELSIF club %]
32
                    <div class="dialog message">
33
                    <div class="dialog message">
33
                        [% IF stored == 'updated' %]
34
                        [% IF stored == 'updated' %]
34
                            <p>Club <i>[% club.name %]</i> was updated.</p>
35
                            <p>Club [% club.name | $HtmlTags tag='i' %] was updated.</p>
35
                        [% ELSE %]
36
                        [% ELSE %]
36
                            <p>Club <i>[% club.name %]</i> was saved.</p>
37
                            <p>Club [% club.name | $HtmlTags tag='i' %] was saved.</p>
37
                        [% END %]
38
                        [% END %]
38
                    </div>
39
                    </div>
39
                [% END %]
40
                [% END %]
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/patron-enroll.tt (-3 / +2 lines)
Lines 1-9 Link Here
1
[% USE AuthorisedValues %]
1
[% USE AuthorisedValues %]
2
[% SET AuthorisedValuesCategories = AuthorisedValues.GetCategories %]
2
[% SET AuthorisedValuesCategories = AuthorisedValues.GetCategories %]
3
[% USE HtmlTags %]
3
4
4
<h3>
5
<h3>Enroll in [% club.name | $HtmlTags tag='i' %]</h3>
5
    Enroll in <i>[% club.name %]</i>
6
</h3>
7
6
8
<div class="container">
7
<div class="container">
9
    <form id="patron-enrollment-form">
8
    <form id="patron-enrollment-form">
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/clubs/templates-add-modify.tt (-4 / +4 lines)
Lines 1-5 Link Here
1
[% USE Branches %]
1
[% USE Branches %]
2
[% USE AuthorisedValues %]
2
[% USE AuthorisedValues %]
3
[% USE HtmlTags %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Tools &rsaquo; Patron clubs &rsaquo;
5
<title>Koha &rsaquo; Tools &rsaquo; Patron clubs &rsaquo;
5
    [% IF club_template %]
6
    [% IF club_template %]
Lines 22-28 Link Here
22
[% INCLUDE 'cat-search.inc' %]
23
[% INCLUDE 'cat-search.inc' %]
23
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; <a href="clubs.pl">Patron clubs</a> &rsaquo;
24
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">Home</a> &rsaquo; <a href="/cgi-bin/koha/tools/tools-home.pl">Tools</a> &rsaquo; <a href="clubs.pl">Patron clubs</a> &rsaquo;
24
    [% IF club_template %]
25
    [% IF club_template %]
25
        Modify club template <i>[% club_template.name %]</i>
26
        Modify club template [% club_template.name | $HtmlTags tag='i' %]
26
    [% ELSE %]
27
    [% ELSE %]
27
        Create a new club template
28
        Create a new club template
28
    [% END %]
29
    [% END %]
Lines 37-45 Link Here
37
38
38
                <h2>
39
                <h2>
39
                    [% IF club_template %]
40
                    [% IF club_template %]
40
                        Modify club template <i>[% club_template.name %]</i>
41
                        <span>Modify club template [% club_template.name | $HtmlTags tag='i' %]</span>
41
                    [% ELSE %]
42
                    [% ELSE %]
42
                        Create a new club template
43
                        <span>Create a new club template</span>
43
                    [% END %]
44
                    [% END %]
44
                </h2>
45
                </h2>
45
46
46
- 

Return to bug 20442