mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-09 11:44:10 +09:00
- HTML entities: & should be written as & - hide useless end tag of <ul>: on the layout insert page, detail setting was hidden but '</ul>' was not hidden. Fixed: Hide '</ul>' when XE hide the detail setting of layout, during inserting layout. git-svn-id: http://xe-core.googlecode.com/svn/branches/1.5.3.2@11064 201d5d3c-b55e-5fd7-737f-ddc643e51545
17 lines
No EOL
895 B
HTML
17 lines
No EOL
895 B
HTML
<div class="sct well">
|
|
<h2>{$lang->favorite}</h2>
|
|
<ul class="nav nav-list">
|
|
<li loop="$favorite_list => $favorite">
|
|
<a href="{getUrl('', 'module', 'admin', 'act', $favorite->admin_index_act)}">{$favorite->title}</a>
|
|
<form class="action" action="./">
|
|
<input type="hidden" name="module" value="admin" />
|
|
<input type="hidden" name="act" value="procAdminToggleFavorite" />
|
|
<input type="hidden" name="site_srl" value="0" />
|
|
<input type="hidden" name="module_name" value="{$favorite->module}" />
|
|
<input type="hidden" name="success_return_url" value="{getUrl('', 'module', 'admin')}" />
|
|
<button type="submit" class="text" title="{$lang->cmd_delete}">×</button>
|
|
</form>
|
|
</li>
|
|
<li cond="!is_array($favorite_list) || count($favorite_list) < 1"><a href="{getUrl('', 'module', 'admin', 'act', 'dispModuleAdminContent')}">{$lang->no_data}</a></li>
|
|
</ul>
|
|
</div> |