Root/
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 | {extends "idf/wiki/base.html"} {block extraheader}{if $oldrev}< meta name = "ROBOTS" content = "NOINDEX" />{/if}{/block} {block docclass}yui-t3{assign $inPageView=true}{/block} {block body} {assign $submitter = $oldrev.get_submitter()}{aurl 'url', 'IDF_Views_Wiki::viewPage', array($project.shortname, $page.title)} < div class = "old-rev" > < p >{blocktrans}You are looking at an old revision (< em >{$oldrev.summary}</ em >) of the page < a href = "{$url}" >{$page.title}</ a >. This revision was created by {$submitter}.{/blocktrans}</ p > </ div > < p >{blocktrans}If you delete this old revision, it will be removed from the database and < strong >you will not be able to recover it</ strong >.{/blocktrans}</ p > < form method = "post" action = "." > < table class = "form" summary = "" > < tr > < td > </ td > < td >< input type = "submit" value = "{trans 'Delete Revision'}" name = "submit" /> | < a href = "{url 'IDF_Views_Wiki::viewPage', array($project.shortname, $page.title)}" >{trans 'Cancel'}</ a > </ td > </ tr > </ table > </ form > < p class = "desc" >{$page.summary}</ p > {markdown $oldrev.content, $request} {/block} {block context} {assign $submitter = $page.get_submitter()} < p >< strong >{trans 'Created:'}</ strong > < span class = "nobrk" >{$page.creation_dtime|dateago}</ span >< br />< span class = "nobrk" >{blocktrans}by {$submitter}{/blocktrans}</ span ></ p > {if $rev.creation_dtime != $page.creation_dtime}< p >{assign $submitter = $rev.get_submitter()} < strong >{trans 'Updated:'}</ strong > < span class = "nobrk" >{$rev.creation_dtime|dateago}</ span >< br />< span class = "nobrk" >{blocktrans}by {$submitter}{/blocktrans}</ span ></ p >{/if} {if $tags.count()} < p > < strong >{trans 'Labels:'}</ strong >< br /> {foreach $tags as $tag} < span class = "label" >< strong >{$tag.class}:</ strong >{$tag.name}</ span >< br /> {/foreach} </ p >{/if} {if $revs.count() > 0} < p >< strong >{trans 'Old Revisions'}</ strong ></ p > < ul >{foreach $revs as $old} < li >< a href="{url 'IDF_Views_Wiki::viewPage', array($project.shortname, $page.title), array('rev'=>$old.id)}">{$old.summary}</ a ></ li > {/foreach}</ ul > {/if} {/block} |