mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Cosmetic issues.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12478 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
cd4078d396
commit
f3df6a7c5a
8 changed files with 34 additions and 13 deletions
|
|
@ -12,7 +12,7 @@
|
|||
</div>
|
||||
<table class="x_table x_table-striped x_table-hover dsTg">
|
||||
<caption>
|
||||
All({$addon_count})
|
||||
<strong>All({$addon_count})</strong>
|
||||
<div class="x_pull-right x_btn-group">
|
||||
<button type="button" class="x_btn x_active __simple">{$lang->simple_view}</button>
|
||||
<button type="button" class="x_btn __detail">{$lang->detail_view}</button>
|
||||
|
|
|
|||
|
|
@ -129,7 +129,7 @@
|
|||
<input type="hidden" name="module" value="editor" />
|
||||
<input type="hidden" name="act" value="procEditorAdminCheckUseListOrder" />
|
||||
<table class="x_table x_table-striped x_table-hover sortable">
|
||||
<caption>{$lang->total_count}({$component_count})</caption>
|
||||
<caption><strong>{$lang->total_count}({$component_count})</strong></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th class="nowr">{$lang->cmd_move}</th>
|
||||
|
|
@ -154,10 +154,8 @@
|
|||
<!--@end-->
|
||||
</td>
|
||||
<td>{$xml_info->version}</td>
|
||||
<td>
|
||||
<!--@foreach($xml_info->author as $author)-->
|
||||
<a href="{$author->homepage}" target="_blank">{$author->name}</a>
|
||||
<!--@endforeach-->
|
||||
<td class="nowr">
|
||||
<a href="{$author->homepage}" target="_blank" loop="$xml_info->author => $author">{$author->name}</a>
|
||||
</td>
|
||||
<td>{$xml_info->path}</td>
|
||||
<td><input type="checkbox" name="enables[]" id="enable" value="{$xml_info->component_name}" title="Use this component " <!--@if($xml_info->enabled=='Y')--> checked="checked"<!--@end--> /></td>
|
||||
|
|
|
|||
|
|
@ -47,6 +47,6 @@
|
|||
<input type="hidden" name="module_category_srl" value="" />
|
||||
<div class="x_pull-right x_input-append">
|
||||
<input type="text" name="title" title="{$lang->category_title}" placeholder="{$lang->category_title}" required />
|
||||
<button type="submit" class="x_btn x_btn-primary">{$lang->cmd_registration}</button>
|
||||
<input type="submit" class="x_btn x_btn-primary" value="{$lang->cmd_registration}">
|
||||
</div>
|
||||
</form>
|
||||
|
|
|
|||
|
|
@ -10,10 +10,10 @@
|
|||
<input type="hidden" name="act" value="procModuleAdminUpdateCategory" />
|
||||
<input type="hidden" name="module_category_srl" value="{$selected_category->module_category_srl}" />
|
||||
<input type="hidden" name="mode" value="update" />
|
||||
<label for="category_title" style="display:inline-block;padding:4px 0 0 0">{$lang->category_title}: </label>
|
||||
<label for="category_title" style="display:inline-block;padding:4px 0 0 0"><strong>{$lang->category_title}</strong>: </label>
|
||||
<span class="x_input-append">
|
||||
<input type="text" name="title" id="category_title" value="{$selected_category->title}" />
|
||||
<button type="submit" class="x_btn">{$lang->cmd_registration}</button>
|
||||
<input type="submit" class="x_btn x_btn-primary" value="{$lang->cmd_registration}">
|
||||
</span>
|
||||
</form>
|
||||
</section>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<include target="header.html" />
|
||||
<table class="x_table x_table-striped x_table-hover dsTg">
|
||||
<caption>
|
||||
All({count($module_list)})
|
||||
<strong>All({count($module_list)})</strong>
|
||||
<div class="x_pull-right x_btn-group">
|
||||
<button class="x_btn x_active __simple">{$lang->simple_view}</button>
|
||||
<button class="x_btn __detail">{$lang->detail_view}</button>
|
||||
|
|
|
|||
|
|
@ -24,7 +24,7 @@
|
|||
<!-- 목록 -->
|
||||
<form action="./" method="get" id="fo_list">
|
||||
<table class="x_table x_table-striped x_table-hover">
|
||||
<caption>Total <strong>{number_format($total_count)}</strong>, Page <strong>{number_format($page)}/{number_format($total_page)}</strong></caption>
|
||||
<caption><strong>Total: {number_format($total_count)}, Page: {number_format($page)}/{number_format($total_page)}</strong></caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->no}</th>
|
||||
|
|
@ -119,3 +119,26 @@
|
|||
</form>
|
||||
|
||||
{$selected_manage_content}
|
||||
|
||||
<script>
|
||||
jQuery(function($){
|
||||
// Modal anchor activation
|
||||
var $docTable = $('#fo_list>table');
|
||||
$docTable.find(':checkbox').change(function(){
|
||||
var $modalAnchor = $('a.modalAnchor');
|
||||
if($docTable.find(':checked').length == 0){
|
||||
$modalAnchor.removeAttr('href').addClass('x_disabled');
|
||||
} else {
|
||||
$modalAnchor.attr('href','#manageSelectedModule').removeClass('x_disabled');
|
||||
}
|
||||
}).change();
|
||||
// Button action
|
||||
$('a.modalAnchor').click(function(){
|
||||
if($docTable.find(':checked').length == 0){
|
||||
$('body').css('overflow','auto');
|
||||
alert('{$lang->msg_not_selected_document}');
|
||||
return false;
|
||||
}
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
|
||||
<div class="x_clearfix btnArea">
|
||||
<button class="x_btn x_pull-left" type="button" onclick="doPointReset('{$module_config['module_srl']?$module_config['module_srl']:$module_srls}')">{$lang->cmd_reset}</button>
|
||||
<button class="x_btn x_btn-primary x_pull-right" type="submit">{$lang->cmd_save}</button>
|
||||
<input class="x_btn x_btn-primary x_pull-right" type="submit" value="{$lang->cmd_save}">
|
||||
</div>
|
||||
</form>
|
||||
</section>
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
<include target="header.html" />
|
||||
<table class="x_table x_table-striped x_table-hover dsTg">
|
||||
<caption>
|
||||
All({$tCount})
|
||||
<strong>All({$tCount})</strong>
|
||||
<div class="x_pull-right x_btn-group">
|
||||
<button class="x_btn x_active __simple">{$lang->simple_view}</button>
|
||||
<button class="x_btn __detail">{$lang->detail_view}</button>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue