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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/list.tt (-2 / +2 lines)
Lines 69-81 $(document).ready(function() { Link Here
69
<body id="patlist_list" class="pat patlist">
69
<body id="patlist_list" class="pat patlist">
70
[% INCLUDE 'header.inc' %]
70
[% INCLUDE 'header.inc' %]
71
[% INCLUDE 'cat-search.inc' %]
71
[% INCLUDE 'cat-search.inc' %]
72
<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 %]</a> &rsaquo; Add patrons</div>
72
<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>
73
73
74
<div id="doc3" class="yui-t2">
74
<div id="doc3" class="yui-t2">
75
   <div id="bd">
75
   <div id="bd">
76
    <div id="yui-main">
76
    <div id="yui-main">
77
        <div class="yui-b">
77
        <div class="yui-b">
78
        <h1>[% list.name %]</h1>
78
        <h1>[% list.name |html %]</h1>
79
79
80
        <form action="list.pl" id="add_patrons" method="post">
80
        <form action="list.pl" id="add_patrons" method="post">
81
            <fieldset>
81
            <fieldset>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/patron_lists/lists.tt (-2 / +1 lines)
Lines 87-93 Link Here
87
            <tbody>
87
            <tbody>
88
                [% FOREACH l IN lists %]
88
                [% FOREACH l IN lists %]
89
                    <tr>
89
                    <tr>
90
                        <td>[% l.name %]</td>
90
                        <td>[% l.name |html %]</td>
91
                        <td>[% l.patron_list_patrons_rs.count || 0 %]</td>
91
                        <td>[% l.patron_list_patrons_rs.count || 0 %]</td>
92
                        <td>
92
                        <td>
93
                            <div class="dropdown">
93
                            <div class="dropdown">
94
- 

Return to bug 19035