Skip to content
Snippets Groups Projects
Commit 049483eb authored by Guillaume Delhumeau's avatar Guillaume Delhumeau
Browse files

XWIKI-12932: Wrong placement of Backlinks in Information tab.

* Included pages are also displayed even if you are not an advanced user.
parent 12a473ad
No related branches found
No related tags found
No related merge requests found
......@@ -9,18 +9,16 @@
<dt>$services.localization.render('core.viewers.information.translationCreation', [$tdoc.realLanguage])</dt>
<dd>$services.localization.render('core.viewers.information.translationCreationData', [$xwiki.getUserName($tdoc.creator), $xwiki.formatDate($tdoc.creationDate)])</dd>
#end
#if($isAdvancedUser)
<dt>$services.localization.render('core.viewers.information.includedPages')</dt>
<dd>
#set($pages = $tdoc.includedPages)
#if ($pages.isEmpty())
## We display a "no included pages" message to avoid having a blank information panel when there is nothing
$services.localization.render('core.viewers.information.noIncludedPages')
#else
#displayDocumentList($pages true $blacklistedSpaces)
#end
</dd>
#end
<dt>$services.localization.render('core.viewers.information.includedPages')</dt>
<dd>
#set($pages = $tdoc.includedPages)
#if ($pages.isEmpty())
## We display a "no included pages" message to avoid having a blank information panel when there is nothing
$services.localization.render('core.viewers.information.noIncludedPages')
#else
#displayDocumentList($pages true $blacklistedSpaces)
#end
</dd>
</dl>
</div>## informationleft
<div id="informationright" class="half column">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment