cryptonas-branches/pythonrewrite/templates/form_system.cs
lars 0e8a5daa73 'show_volume' splitted into different pages
'/plugins' shows only plugins with 'system' capability
development draft for volume sub-page links
"access_denied" page added
2006-10-09 16:42:40 +00:00

19 lines
479 B
C#

<?cs # $Id$ ?>
<h1><?cs var:html_escape(Lang.Title.System) ?></h1>
<p><ul>
<?cs # sort the Plugins - using the most stupid way :) ?>
<?cs loop: order = #0, #100, #1
?><?cs # plugins ?><?cs each:x = Settings.PluginList
?><?cs if:x.Types.system && x.Rank == order ?>
<li><a href="<?cs call:link('plugins/' + name(x),'','','','') ?>" title="<?cs
var:html_escape(x.Link) ?>"><?cs var:html_escape(x.Link) ?></a></li><?cs
/if ?><?cs
/each ?><?cs
/loop ?>
</ul></p>