Lines 6-11
Link Here
|
6 |
[% USE ItemTypes %] |
6 |
[% USE ItemTypes %] |
7 |
[% USE Branches %] |
7 |
[% USE Branches %] |
8 |
[% USE TablesSettings %] |
8 |
[% USE TablesSettings %] |
|
|
9 |
[% USE HtmlScrubber %] |
9 |
[% PROCESS 'i18n.inc' %] |
10 |
[% PROCESS 'i18n.inc' %] |
10 |
[% SET footerjs = 1 %] |
11 |
[% SET footerjs = 1 %] |
11 |
[% INCLUDE 'doc-head-open.inc' %] |
12 |
[% INCLUDE 'doc-head-open.inc' %] |
Lines 102-108
Link Here
|
102 |
</div> |
103 |
</div> |
103 |
</li> |
104 |
</li> |
104 |
<li><span class="label">Staff note</span> [% course.staff_note | html %]</li> |
105 |
<li><span class="label">Staff note</span> [% course.staff_note | html %]</li> |
105 |
<li><span class="label">Public note</span> [% course.public_note | $raw %]</li> |
106 |
<li><span class="label">Public note</span> [% course.public_note | scrub_html type => 'note' | $raw %]</li> |
106 |
<li><span class="label">Student count</span> [% course.students_count | html %]</li> |
107 |
<li><span class="label">Student count</span> [% course.students_count | html %]</li> |
107 |
<li><span class="label">Status</span> [% IF course.enabled == 'yes' %]Active[% ELSE %]Inactive[% END %]</li> |
108 |
<li><span class="label">Status</span> [% IF course.enabled == 'yes' %]Active[% ELSE %]Inactive[% END %]</li> |
108 |
</ol> |
109 |
</ol> |
Lines 263-271
Link Here
|
263 |
[% END %] |
264 |
[% END %] |
264 |
</td> |
265 |
</td> |
265 |
<td>[% IF (cr.public_note) %] |
266 |
<td>[% IF (cr.public_note) %] |
266 |
[% cr.public_note | $raw %] |
267 |
[% cr.public_note | scrub_html type => 'note' | $raw %] |
267 |
[% ELSIF (cr.item.itemnotes) %] |
268 |
[% ELSIF (cr.item.itemnotes) %] |
268 |
[% cr.item.itemnotes | $raw %] |
269 |
[% cr.item.itemnotes | scrub_html type => 'note' | $raw %] |
269 |
[% END %] |
270 |
[% END %] |
270 |
</td> |
271 |
</td> |
271 |
|
272 |
|