[%# Screen for displaying the heading information of a topic. The
actual view topic data is still generated directly from the perl
script, as it is complex HTML that doesn't need to be
customised. #%]
[% PROCESS header.html.tmpl displaymenu = 1 version = version
closehead = closehead subtitle = "Topic Details" %]
[%# Display any "feedback" to the user if necessary. #%]
[% IF feedback != '' %]
[% feedback %]
[% END %]
[% author | html_entity %]
[% document_creation_time | html_entity %]
Topic title: [% title | html_entity %]
[%# If this topic obsoletes any other topics, show them now #%]
[% IF obsoleted_topics.size > 0 %]
Topics obsoletes:
[% FOREACH entry = obsoleted_topics %]
[% entry.title | html_entity %][% IF ! loop.last() %],[% END %]
[% END %]
[% END %]
[%# If this topic is obsoleted by other topics, show them now #%]
[% IF obsoleted_by.size > 0 %]
Obsoleted by:
[% FOREACH entry = obsoleted_by %]
[% entry.title | html_entity %][% IF ! loop.last() %],[% END %]
[% END %]
[% END %]