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

(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/intranet-main.tt (-1 / +1 lines)
Lines 183-189 Link Here
183
            [% SET newsdisp = Koha.Preference('NewsAuthorDisplay') %]
183
            [% SET newsdisp = Koha.Preference('NewsAuthorDisplay') %]
184
            [% FOREACH koha_new IN koha_news %]
184
            [% FOREACH koha_new IN koha_news %]
185
                <div class="newsitem" id="news[% koha_new.idnew %]"><h4>[% koha_new.title %]</h4>
185
                <div class="newsitem" id="news[% koha_new.idnew %]"><h4>[% koha_new.title %]</h4>
186
                    <div class="newsbody">[% koha_new.new %]</div>
186
                    <div class="newsbody">[% koha_new.content %]</div>
187
                    <p class="newsfooter"> Posted on [% koha_new.newdate %][% IF( ( newsdisp == 'staff' || newsdisp == 'both' ) && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title %] </span>[% koha_new.author_firstname %] [% koha_new.author_surname %]<br />[% END %]
187
                    <p class="newsfooter"> Posted on [% koha_new.newdate %][% IF( ( newsdisp == 'staff' || newsdisp == 'both' ) && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title %] </span>[% koha_new.author_firstname %] [% koha_new.author_surname %]<br />[% END %]
188
                        [% IF ( CAN_user_tools ) %]
188
                        [% IF ( CAN_user_tools ) %]
189
                            <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% koha_new.idnew %]">Edit</a>
189
                            <a href="/cgi-bin/koha/tools/koha-news.pl?op=add_form&amp;id=[% koha_new.idnew %]">Edit</a>
(-)a/koha-tmpl/intranet-tmpl/prog/en/modules/members/moremember-receipt.tt (-1 / +1 lines)
Lines 62-68 Date due: [% issueloo.date_due %]</p> Link Here
62
                       <!-- [% koha_news_count %] recent news item(s) -->
62
                       <!-- [% koha_news_count %] recent news item(s) -->
63
            [% FOREACH koha_new IN koha_news %]
63
            [% FOREACH koha_new IN koha_news %]
64
                    <div class="newsitem" id="news[% koha_new.idnew %]"><h5 style="margin-bottom: 1px; margin-top: 1px"><b>[% koha_new.title %]</b></h5>
64
                    <div class="newsitem" id="news[% koha_new.idnew %]"><h5 style="margin-bottom: 1px; margin-top: 1px"><b>[% koha_new.title %]</b></h5>
65
                                        <p style="margin-bottom: 1px; margin-top: 1px">[% koha_new.new %]</p>
65
                                        <p style="margin-bottom: 1px; margin-top: 1px">[% koha_new.content %]</p>
66
                                       <p class="newsfooter" style="font-size: 8pt; font-style:italic; margin-bottom: 1px; margin-top: 1px"> Posted on [% koha_new.newdate %]
66
                                       <p class="newsfooter" style="font-size: 8pt; font-style:italic; margin-bottom: 1px; margin-top: 1px"> Posted on [% koha_new.newdate %]
67
67
68
</p><hr /></div>
68
</p><hr /></div>
(-)a/koha-tmpl/opac-tmpl/bootstrap/en/modules/opac-main.tt (-2 / +1 lines)
Lines 44-50 Link Here
44
                [% FOREACH koha_new IN koha_news %]
44
                [% FOREACH koha_new IN koha_news %]
45
                    <div class="newsitem">
45
                    <div class="newsitem">
46
                        <a name="newsitem[% koha_new.idnew %]"></a><h4 class="newsheader">[% koha_new.title %]</h4>
46
                        <a name="newsitem[% koha_new.idnew %]"></a><h4 class="newsheader">[% koha_new.title %]</h4>
47
                        <div class="newsbody">[% koha_new.new %]</div>
47
                        <div class="newsbody">[% koha_new.content %]</div>
48
                        <div class="newsfooter">(published on [% koha_new.newdate %][% IF ( (newsdisp == 'opac' || newsdisp == 'both') && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title %] </span>[% koha_new.author_firstname %] [% koha_new.author_surname %][% END %])</div>
48
                        <div class="newsfooter">(published on [% koha_new.newdate %][% IF ( (newsdisp == 'opac' || newsdisp == 'both') && koha_new.borrowernumber ) %] by <span class="newsauthor_title">[% koha_new.author_title %] </span>[% koha_new.author_firstname %] [% koha_new.author_surname %][% END %])</div>
49
                    </div>
49
                    </div>
50
                [% END %]
50
                [% END %]
51
- 

Return to bug 17960