Lucas Gass
3b273de577
This patch set attempts to replace all the <i> tags with <em> and all the <b> tags with <strong> in the staff interface. I attempted to get all the templates, includes, and xslt files. To test: 1. Review the changes as best as possible, looking for mistakes. 2. grep for <i> and <b> in the modules, includes, and xslt folders. You should get nothing/ 3. If you grep '<\/i>' you should only see instances of Font Awesome. 4. If you grep '<\/b>' you should only see instances where caret is used. Signed-off-by: Owen Leonard <oleonard@myacpl.org> Signed-off-by: Julian Maurice <julian.maurice@biblibre.com> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org> Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
12 lines
521 B
Text
12 lines
521 B
Text
[% USE KohaDates %]
|
|
<p>
|
|
[% log.timestamp | $KohaDates with_hours => 1 %] : <strong>Status changed</strong>
|
|
[% IF log.info.status_before %]
|
|
[% before = log.info.status_before %]
|
|
[% display_before = log.aliases.$before ? log.aliases.$before.lib : request.capabilities.$before.name %]
|
|
from "[% display_before | html %]"
|
|
[% END %]
|
|
[% after = log.info.status_after %]
|
|
[% display_after = log.aliases.$after ? log.aliases.$after.lib : request.capabilities.$after.name %]
|
|
to "[% display_after | html %]"
|
|
</p>
|