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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/add-modify.tt (-13 / +14 lines)
Lines 1-11 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% USE Asset %]
2
[% USE Asset %]
2
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Tools &rsaquo; Patron lists &rsaquo;
5
<title>[% t('Koha › Tools › Patron lists ›') %]
5
    [% IF list.patron_list_id %]
6
    [% IF list.patron_list_id %]
6
        Modify patron list
7
        [% t('Modify patron list') %]
7
    [% ELSE %]
8
    [% ELSE %]
8
        New patron list
9
        [% t('New patron list') %]
9
    [% END %]
10
    [% END %]
10
</title>
11
</title>
11
[% INCLUDE 'doc-head-close.inc' %]
12
[% INCLUDE 'doc-head-close.inc' %]
Lines 14-24 Link Here
14
<body id="patlist_add_modify" class="pat patlist">
15
<body id="patlist_add_modify" class="pat patlist">
15
[% INCLUDE 'header.inc' %]
16
[% INCLUDE 'header.inc' %]
16
[% INCLUDE 'cat-search.inc' %]
17
[% INCLUDE 'cat-search.inc' %]
17
<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="lists.pl">Patron lists</a> &rsaquo;
18
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">[% t('Tools') %]</a> › <a href="lists.pl">[% t('Patron lists') %]</a> ›
18
    [% IF list.patron_list_id %]
19
    [% IF list.patron_list_id %]
19
        Modify patron list
20
        [% t('Modify patron list') %]
20
    [% ELSE %]
21
    [% ELSE %]
21
        New patron list
22
        [% t('New patron list') %]
22
    [% END %]
23
    [% END %]
23
</div>
24
</div>
24
25
Lines 27-35 Link Here
27
    <div class="yui-main">
28
    <div class="yui-main">
28
        <h1>
29
        <h1>
29
            [% IF list.patron_list_id %]
30
            [% IF list.patron_list_id %]
30
                Modify patron list
31
                [% t('Modify patron list') %]
31
            [% ELSE %]
32
            [% ELSE %]
32
                New patron list
33
                [% t('New patron list') %]
33
            [% END %]
34
            [% END %]
34
        </h1>
35
        </h1>
35
36
Lines 38-57 Link Here
38
39
39
                <legend>
40
                <legend>
40
                    [% IF list.patron_list_id %]
41
                    [% IF list.patron_list_id %]
41
                    Modify patron list
42
                    [% t('Modify patron list') %]
42
                    [% ELSE %]
43
                    [% ELSE %]
43
                    Create a new patron list
44
                    [% t('Create a new patron list') %]
44
                    [% END %]
45
                    [% END %]
45
                </legend>
46
                </legend>
46
47
47
                <ol>
48
                <ol>
48
                    <li>
49
                    <li>
49
                        <label class="required" for="list-name">Name:</label>
50
                        <label class="required" for="list-name">[% t('Name:') %]</label>
50
                        <input id="list-name" name="name" type="text" class="required" required="required" value="[% list.name %]" />
51
                        <input id="list-name" name="name" type="text" class="required" required="required" value="[% list.name %]" />
51
                    </li>
52
                    </li>
52
53
53
                    <li>
54
                    <li>
54
                        <span class="label">Owner: </span>[% loggedinusername %]
55
                        <span class="label">[% t('Owner:') %] </span>[% loggedinusername %]
55
                    </li>
56
                    </li>
56
                </ol>
57
                </ol>
57
58
Lines 60-66 Link Here
60
            <fieldset class="action">
61
            <fieldset class="action">
61
                <input type="hidden" name="patron_list_id" value="[% list.patron_list_id %]" />
62
                <input type="hidden" name="patron_list_id" value="[% list.patron_list_id %]" />
62
                <input type="submit" value="Save" />
63
                <input type="submit" value="Save" />
63
                <a href="lists.pl" class="cancel">Cancel</a>
64
                <a href="lists.pl" class="cancel">[% t('Cancel') %]</a>
64
            </fieldset>
65
            </fieldset>
65
        </form>
66
        </form>
66
    </div>
67
    </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt (-30 / +31 lines)
Lines 1-8 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% USE Asset %]
2
[% USE Asset %]
2
[% USE KohaDates %]
3
[% USE KohaDates %]
3
[% SET footerjs = 1 %]
4
[% SET footerjs = 1 %]
4
[% INCLUDE 'doc-head-open.inc' %]
5
[% INCLUDE 'doc-head-open.inc' %]
5
<title>Koha &rsaquo; Tools &rsaquo; Patron lists &rsaquo; [% list.name %] &rsaquo; Add patrons</title>
6
<title>[% t('Koha › Tools › Patron lists ›') %] [% list.name %] [% t('› Add patrons') %]</title>
6
[% INCLUDE 'doc-head-close.inc' %]
7
[% INCLUDE 'doc-head-close.inc' %]
7
8
8
[% Asset.css("css/datatables.css") %]
9
[% Asset.css("css/datatables.css") %]
Lines 25-31 Link Here
25
<body id="patlist_list" class="pat patlist">
26
<body id="patlist_list" class="pat patlist">
26
[% INCLUDE 'header.inc' %]
27
[% INCLUDE 'header.inc' %]
27
[% INCLUDE 'cat-search.inc' %]
28
[% INCLUDE 'cat-search.inc' %]
28
<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="lists.pl">Patron lists</a> &rsaquo; <a href="/cgi-bin/koha/patron_lists/list.pl?patron_list_id=[% list.id %]">[% list.name |html %]</a> &rsaquo; Add patrons</div>
29
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">[% t('Tools') %]</a> › <a href="lists.pl">[% t('Patron lists') %]</a> › <a href="/cgi-bin/koha/patron_lists/list.pl?patron_list_id=[% list.id %]">[% list.name |html %]</a> [% t('› Add patrons') %]</div>
29
30
30
<div id="doc3" class="yui-t2">
31
<div id="doc3" class="yui-t2">
31
   <div id="bd">
32
   <div id="bd">
Lines 34-43 Link Here
34
        <h1>[% list.name |html %]</h1>
35
        <h1>[% list.name |html %]</h1>
35
36
36
        [% IF ( not_found.size > 0 ) %]
37
        [% IF ( not_found.size > 0 ) %]
37
        <div class="dialog alert"><p>Warning, the following cardnumbers were not found:</p></div>
38
        <div class="dialog alert"><p>[% t('Warning, the following cardnumbers were not found:') %]</p></div>
38
        <table style="margin:auto;">
39
        <table style="margin:auto;">
39
            <thead>
40
            <thead>
40
                <tr><th>Cardnumbers not found</th></tr>
41
                <tr><th>[% t('Cardnumbers not found') %]</th></tr>
41
            </thead>
42
            </thead>
42
            <tbody>
43
            <tbody>
43
            [% FOREACH nf IN not_found %]
44
            [% FOREACH nf IN not_found %]
Lines 48-57 Link Here
48
        [% END %]
49
        [% END %]
49
50
50
        [% IF ( existed.size > 0 ) %]
51
        [% IF ( existed.size > 0 ) %]
51
        <div class="dialog alert"><p>Warning, the following cardnumbers were already in this list:</p></div>
52
        <div class="dialog alert"><p>[% t('Warning, the following cardnumbers were already in this list:') %]</p></div>
52
        <table style="margin:auto;">
53
        <table style="margin:auto;">
53
            <thead>
54
            <thead>
54
                <tr><th>Cardnumbers already in list</th></tr>
55
                <tr><th>[% t('Cardnumbers already in list') %]</th></tr>
55
            </thead>
56
            </thead>
56
            <tbody>
57
            <tbody>
57
            [% FOREACH ed IN existed %]
58
            [% FOREACH ed IN existed %]
Lines 63-82 Link Here
63
64
64
        <form action="list.pl" id="add_patrons" method="post" class="clearfix">
65
        <form action="list.pl" id="add_patrons" method="post" class="clearfix">
65
            <fieldset class="rows">
66
            <fieldset class="rows">
66
                <legend>Add patrons</legend>
67
                <legend>[% t('Add patrons') %]</legend>
67
                <ol>
68
                <ol>
68
                    <li id="patron_search_line">
69
                    <li id="patron_search_line">
69
                        <label for="find_patron">Patron search: </label>
70
                        <label for="find_patron">[% t('Patron search:') %] </label>
70
                        <input autocomplete="off" id="find_patron" type="text" style="width:150px" class="noEnterSubmit" />
71
                        <input autocomplete="off" id="find_patron" type="text" style="width:150px" class="noEnterSubmit" />
71
                    </li>
72
                    </li>
72
                    <li id="add_patrons_by_search"><a href="#">
73
                    <li id="add_patrons_by_search"><a href="#">
73
                        <span class="label">&nbsp;</span>
74
                        <span class="label"> </span>
74
                        <i class="fa fa-plus"></i> Search for patrons</a></li>
75
                        <i class="fa fa-plus"></i> [% t('Search for patrons') %]</a></li>
75
                    <li id="add_patrons_by_barcode"><a href="#">
76
                    <li id="add_patrons_by_barcode"><a href="#">
76
                        <span class="label">&nbsp;</span>
77
                        <span class="label"> </span>
77
                        <i class="fa fa-plus"></i> Enter multiple card numbers</a></li>
78
                        <i class="fa fa-plus"></i> [% t('Enter multiple card numbers') %]</a></li>
78
                    <li id="patron_barcodes_line">
79
                    <li id="patron_barcodes_line">
79
                        <label for="patrons_by_barcode">Card number list (one barcode per line):</label>
80
                        <label for="patrons_by_barcode">[% t('Card number list (one barcode per line):') %]</label>
80
                        <textarea id="patrons_by_barcode" name="patrons_by_barcode" id="" cols="30" rows="10"></textarea>
81
                        <textarea id="patrons_by_barcode" name="patrons_by_barcode" id="" cols="30" rows="10"></textarea>
81
                    </li>
82
                    </li>
82
                </ol>
83
                </ol>
Lines 88-100 Link Here
88
            <div class="clearfix"></div>
89
            <div class="clearfix"></div>
89
90
90
            <fieldset id="patrons_to_add_fieldset">
91
            <fieldset id="patrons_to_add_fieldset">
91
                <legend>Patrons to be added</legend>
92
                <legend>[% t('Patrons to be added') %]</legend>
92
                <div id="patrons_to_add"></div>
93
                <div id="patrons_to_add"></div>
93
94
94
                <fieldset class="action">
95
                <fieldset class="action">
95
                    <input type="hidden" name="patron_list_id" value="[% list.patron_list_id %]" />
96
                    <input type="hidden" name="patron_list_id" value="[% list.patron_list_id %]" />
96
                    <input type="submit" value="Add patrons" />
97
                    <input type="submit" value="Add patrons" />
97
                    <a href="lists.pl" class="cancel">Cancel</a>
98
                    <a href="lists.pl" class="cancel">[% t('Cancel') %]</a>
98
                </fieldset>
99
                </fieldset>
99
            </fieldset>
100
            </fieldset>
100
        </form>
101
        </form>
Lines 102-130 Link Here
102
        <form action="list.pl" id="remove_patrons" method="post">
103
        <form action="list.pl" id="remove_patrons" method="post">
103
104
104
            <div id="searchheader">
105
            <div id="searchheader">
105
                <span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> Select all</a></span> |
106
                <span class="checkall"><a id="CheckAll" href="#"><i class="fa fa-check"></i> [% t('Select all') %]</a></span> |
106
                <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> Clear all</a></span> |
107
                <span class="clearall"><a id="CheckNone" href="#"><i class="fa fa-remove"></i> [% t('Clear all') %]</a></span> |
107
                <div class="btn-group">
108
                <div class="btn-group">
108
                    <button class="btn btn-default btn-xs list-remove" type="submit"><i class="fa fa-trash"></i> Remove selected</button>
109
                    <button class="btn btn-default btn-xs list-remove" type="submit"><i class="fa fa-trash"></i> [% t('Remove selected') %]</button>
109
                </div>
110
                </div>
110
                |
111
                |
111
                <div class="btn-group">
112
                <div class="btn-group">
112
                    <button class="btn btn-default btn-xs merge-patrons"><i class="fa fa-compress"></i> Merge selected patrons</button>
113
                    <button class="btn btn-default btn-xs merge-patrons"><i class="fa fa-compress"></i> [% t('Merge selected patrons') %]</button>
113
                </div>
114
                </div>
114
            </div>
115
            </div>
115
116
116
            <table id="patron-list-table">
117
            <table id="patron-list-table">
117
                <thead>
118
                <thead>
118
                    <tr>
119
                    <tr>
119
                        <th>&nbsp;</th>
120
                        <th> </th>
120
                        <th>Card</th>
121
                        <th>[% t('Card') %]</th>
121
                        <th>First name</th>
122
                        <th>[% t('First name') %]</th>
122
                        <th>Surname</th>
123
                        <th>[% t('Surname') %]</th>
123
                        <th>Address</th>
124
                        <th>[% t('Address') %]</th>
124
                        <th>Category</th>
125
                        <th>[% t('Category') %]</th>
125
                        <th>Library</th>
126
                        <th>[% t('Library') %]</th>
126
                        <th>Expires on</th>
127
                        <th>[% t('Expires on') %]</th>
127
                        <th>Circ notes</th>
128
                        <th>[% t('Circ notes') %]</th>
128
                    </tr>
129
                    </tr>
129
                </thead>
130
                </thead>
130
131
Lines 159-166 Link Here
159
            </table>
160
            </table>
160
161
161
            <input type="hidden" name="patron_list_id" value="[% list.patron_list_id %]" />
162
            <input type="hidden" name="patron_list_id" value="[% list.patron_list_id %]" />
162
            <button type="submit" class="btn btn-default btn-sm list-remove"><i class="fa fa-trash" aria-hidden="true"></i> Remove selected patrons</button>
163
            <button type="submit" class="btn btn-default btn-sm list-remove"><i class="fa fa-trash" aria-hidden="true"></i> [% t('Remove selected patrons') %]</button>
163
            <button class="btn btn-default btn-sm merge-patrons" type="submit"><i class="fa fa-compress"></i> Merge selected patrons</button>
164
            <button class="btn btn-default btn-sm merge-patrons" type="submit"><i class="fa fa-compress"></i> [% t('Merge selected patrons') %]</button>
164
        </form>
165
        </form>
165
166
166
            </div>
167
            </div>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt (-19 / +19 lines)
Lines 1-7 Link Here
1
[% PROCESS 'i18n.inc' %]
1
[% USE Asset %]
2
[% USE Asset %]
2
[% SET footerjs = 1 %]
3
[% SET footerjs = 1 %]
3
[% INCLUDE 'doc-head-open.inc' %]
4
[% INCLUDE 'doc-head-open.inc' %]
4
<title>Koha &rsaquo; Tools &rsaquo; Patron lists</title>
5
<title>[% t('Koha › Tools › Patron lists') %]</title>
5
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'doc-head-close.inc' %]
6
[% INCLUDE 'greybox.inc' %]
7
[% INCLUDE 'greybox.inc' %]
7
[% Asset.css("css/datatables.css") %]
8
[% Asset.css("css/datatables.css") %]
Lines 10-16 Link Here
10
<body id="patlist_lists" class="pat patlist">
11
<body id="patlist_lists" class="pat patlist">
11
[% INCLUDE 'header.inc' %]
12
[% INCLUDE 'header.inc' %]
12
[% INCLUDE 'cat-search.inc' %]
13
[% INCLUDE 'cat-search.inc' %]
13
<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; Patron lists</div>
14
<div id="breadcrumbs"><a href="/cgi-bin/koha/mainpage.pl">[% t('Home') %]</a> › <a href="/cgi-bin/koha/tools/tools-home.pl">[% t('Tools') %]</a> [% t('› Patron lists') %]</div>
14
15
15
<div id="doc3" class="yui-t2">
16
<div id="doc3" class="yui-t2">
16
   <div id="bd">
17
   <div id="bd">
Lines 19-38 Link Here
19
20
20
        <div id="toolbar" class="btn-toolbar">
21
        <div id="toolbar" class="btn-toolbar">
21
            <div class="btn-group">
22
            <div class="btn-group">
22
                <a class="btn btn-default btn-sm" href="add-modify.pl"><i class="fa fa-plus"></i> New patron list</a>
23
                <a class="btn btn-default btn-sm" href="add-modify.pl"><i class="fa fa-plus"></i> [% t('New patron list') %]</a>
23
            </div>
24
            </div>
24
        </div>
25
        </div>
25
26
26
        <h1>Your patron lists</h1>
27
        <h1>[% t('Your patron lists') %]</h1>
27
28
28
        [% IF ( lists ) %]
29
        [% IF ( lists ) %]
29
30
30
        <table id="patron-lists-table">
31
        <table id="patron-lists-table">
31
            <thead>
32
            <thead>
32
                <tr>
33
                <tr>
33
                    <th>Name</th>
34
                    <th>[% t('Name') %]</th>
34
                    <th>Patrons in list</th>
35
                    <th>[% t('Patrons in list') %]</th>
35
                    <th class="NoSort">&nbsp;</th>
36
                    <th class="NoSort"> </th>
36
                </tr>
37
                </tr>
37
            </thead>
38
            </thead>
38
39
Lines 44-71 Link Here
44
                        <td>
45
                        <td>
45
                            <div class="dropdown">
46
                            <div class="dropdown">
46
                                <a class="btn btn-default btn-xs dropdown-toggle" id="listactions[% l.patron_list_id %]" role="button" data-toggle="dropdown" href="#">
47
                                <a class="btn btn-default btn-xs dropdown-toggle" id="listactions[% l.patron_list_id %]" role="button" data-toggle="dropdown" href="#">
47
                                   Actions <b class="caret"></b>
48
                                   [% t('Actions') %] <b class="caret"></b>
48
                                </a>
49
                                </a>
49
                                <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="listactions[% l.patron_list_id %]">
50
                                <ul class="dropdown-menu pull-right" role="menu" aria-labelledby="listactions[% l.patron_list_id %]">
50
                                    <li><a href="/cgi-bin/koha/patron_lists/list.pl?patron_list_id=[% l.patron_list_id %]"><i class="fa fa-user"></i> Add patrons</a></li>
51
                                    <li><a href="/cgi-bin/koha/patron_lists/list.pl?patron_list_id=[% l.patron_list_id %]"><i class="fa fa-user"></i> [% t('Add patrons') %]</a></li>
51
                                    <li><a href="/cgi-bin/koha/patron_lists/add-modify.pl?patron_list_id=[% l.patron_list_id %]"><i class="fa fa-pencil"></i> Edit list</a></li>
52
                                    <li><a href="/cgi-bin/koha/patron_lists/add-modify.pl?patron_list_id=[% l.patron_list_id %]"><i class="fa fa-pencil"></i> [% t('Edit list') %]</a></li>
52
                                    <li><a class="delete_patron" href="/cgi-bin/koha/patron_lists/delete.pl?patron_list_id=[% l.patron_list_id %]" data-list-name="[% l.name %]"><i class="fa fa-trash"></i> Delete list</a></li>
53
                                    <li><a class="delete_patron" href="/cgi-bin/koha/patron_lists/delete.pl?patron_list_id=[% l.patron_list_id %]" data-list-name="[% l.name %]"><i class="fa fa-trash"></i> [% t('Delete list') %]</a></li>
53
                                    [% IF ( l.patron_list_patrons_rs.count ) %]
54
                                    [% IF ( l.patron_list_patrons_rs.count ) %]
54
                                        <li class="divider"></li>
55
                                        <li class="divider"></li>
55
                                        <li>
56
                                        <li>
56
                                            <a class="print_cards" href="/cgi-bin/koha/patroncards/print.pl?patronlist_id=[% l.patron_list_id %]" data-patron_list_id="[% l.patron_list_id %]"><i class="fa fa-print"></i> Print patron cards</a>
57
                                            <a class="print_cards" href="/cgi-bin/koha/patroncards/print.pl?patronlist_id=[% l.patron_list_id %]" data-patron_list_id="[% l.patron_list_id %]"><i class="fa fa-print"></i> [% t('Print patron cards') %]</a>
57
                                        </li>
58
                                        </li>
58
                                        [% IF CAN_user_tools_edit_patrons %]
59
                                        [% IF CAN_user_tools_edit_patrons %]
59
                                            <li>
60
                                            <li>
60
                                                <a href="/cgi-bin/koha/tools/modborrowers.pl?patron_list_id=[% l.patron_list_id %]&op=show">
61
                                                <a href="/cgi-bin/koha/tools/modborrowers.pl?patron_list_id=[% l.patron_list_id %]&op=show">
61
                                                    <i class="fa fa-pencil"></i> Batch edit patrons
62
                                                    <i class="fa fa-pencil"></i> [% t('Batch edit patrons') %]
62
                                                </a>
63
                                                </a>
63
                                            </li>
64
                                            </li>
64
                                        [% END %]
65
                                        [% END %]
65
                                        [% IF CAN_user_tools_delete_anonymize_patrons %]
66
                                        [% IF CAN_user_tools_delete_anonymize_patrons %]
66
                                            <li>
67
                                            <li>
67
                                                <a href="/cgi-bin/koha/tools/cleanborrowers.pl?step=2&patron_list_id=[% l.patron_list_id %]&checkbox=borrower">
68
                                                <a href="/cgi-bin/koha/tools/cleanborrowers.pl?step=2&patron_list_id=[% l.patron_list_id %]&checkbox=borrower">
68
                                                    <i class="fa fa-trash"></i> Batch delete patrons
69
                                                    <i class="fa fa-trash"></i> [% t('Batch delete patrons') %]
69
                                                </a>
70
                                                </a>
70
                                            </li>
71
                                            </li>
71
                                        [% END %]
72
                                        [% END %]
Lines 83-100 Link Here
83
                <div class="modal-dialog">
84
                <div class="modal-dialog">
84
                <div class="modal-content">
85
                <div class="modal-content">
85
                <div class="modal-header">
86
                <div class="modal-header">
86
                    <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">&times;</button>
87
                    <button type="button" class="closebtn" data-dismiss="modal" aria-hidden="true">×</button>
87
                    <h3 id="patronExportModal_label">Print patron cards</h3>
88
                    <h3 id="patronExportModal_label">[% t('Print patron cards') %]</h3>
88
                </div>
89
                </div>
89
                <div class="modal-body">
90
                <div class="modal-body">
90
                    <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> Loading </div>
91
                    <div id="loading"> <img src="[% interface %]/[% theme %]/img/spinner-small.gif" alt="" /> [% t('Loading') %] </div>
91
                </div>
92
                </div>
92
                </div>
93
                </div>
93
                </div>
94
                </div>
94
            </div>
95
            </div>
95
96
96
        [% ELSE %]
97
        [% ELSE %]
97
           <div class="dialog message">There are no patron lists.</div>
98
           <div class="dialog message">[% t('There are no patron lists.') %]</div>
98
        [% END %]
99
        [% END %]
99
100
100
            </div>
101
            </div>
101
- 

Return to bug 20988