Selected module management UI cleaning. (modal page)

git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12138 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
ChanMyeong 2012-11-06 10:01:01 +00:00
parent 4304910344
commit ef08a0921c
17 changed files with 290 additions and 466 deletions

View file

@ -1,10 +1,11 @@
<load target="js/manage_selected_module.js" usecdn="true" />
<div id="manageSelectedModule" class="modal">
<div class="fg">
<h2 class="h2">{$lang->do_selected}</h2>
<table class="x_table x_table-striped x_table-hover">
<div id="manageSelectedModule" class="x_modal x">
<div class="x_modal-header">
<h3>{$lang->do_selected}</h3>
</div>
<div class="x_modal-body">
<table class="x_table x_table-striped x_table-hover" style="margin-bottom:20px">
<thead>
<tr>
<th scope="col">{$lang->mid}</th>
@ -14,18 +15,26 @@
<tbody id="manageSelectedModuleBody">
</tbody>
</table>
<p>
<a href="#manageSelectedModuleSetup" class="tgAnchor">{$lang->bundle_setup}</a>
<i>|</i>
<a href="#manageSelectedModuleAddition" class="tgAnchor">{$lang->bundle_addition_setup}</a>
<i>|</i>
<a href="#manageSelectedModuleGrant" class="tgAnchor">{$lang->bundle_grant_setup}</a>
</p>
<include target="include.module_setup.html" />
<include target="include.module_addition_setup.html" />
<include target="include.module_grant_setup.html" />
<include target="include.multilang.textarea.html" />
<div class="x_tabbable">
<ul class="x_nav x_nav-tabs">
<li class="x_active"><a href="#tab1">{$lang->bundle_setup}</a></li>
<li><a href="#tab2">{$lang->bundle_addition_setup}</a></li>
<li><a href="#tab3">{$lang->bundle_grant_setup}</a></li>
</ul>
<div class="x_tab-content">
<div class="x_tab-pane x_active" id="tab1">
<include target="include.module_setup.html" />
</div>
<div class="x_tab-pane" id="tab2">
<include target="include.module_addition_setup.html" />
</div>
<div class="x_tab-pane" id="tab3">
<include target="include.module_grant_setup.html" />
</div>
</div>
</div>
</div>
<div class="x_modal-footer">
<button type="button" class="x_btn x_pull-left">{$lang->cmd_close}</button>
</div>
</div>