示例#1
0
		<?php 
echo title_breadcrumb($pagetitle, $breadcrumb);
?>
		<section class="content">
			<div class="row">
				<div class="col-md-12">
					<div class="nav-tabs-custom">
						<ul class="nav nav-tabs">
							<li class="active"><a href="#tab_acc_type" data-toggle="tab">Account Type</a></li>
							<li><a href="#tab_acc" data-toggle="tab">Account</a></li>
						</ul>
						<div class="tab-content">
							<div class="tab-pane active" id="tab_acc_type">
								<div class="box-header">
									<?php 
echo btn_create_top(lang('accounts_create_account_type'), 'add_acc_type()', '');
?>
								</div>
								<div class="box-body">
									<?php 
echo table('acc_type');
?>
								</div>
							</div>
							<div class="tab-pane" id="tab_acc">
							</div>
						</div>
					</div>
				</div>
			</div>
		</section>
示例#2
0
defined('BASEPATH') or exit('No direct script access allowed');
?>

	<div class="content-wrapper">
		<?php 
echo title_breadcrumb($pagetitle, $breadcrumb);
?>
		<section class="content">
			<div class="row">
				<div class="col-md-12">
					<div class="box">
						<div class="box-header with-border">
							<h3 class="box-title">
								<?php 
echo btn_create_top(lang('clients_create_client'), 'add_client()', '');
?>
							</h3>
						</div>
						<div class="box-body">
							<?php 
echo table('clients');
?>
						</div>
					</div>
				</div>
			</div>
		</section>
	</div>

	<script type="text/javascript">
示例#3
0
									<?php 
echo table('price_cat');
?>
								</div>
							</div>
							<div class="tab-pane" id="tab_price">
								<div class="box-header" style="padding: 0px 10px !important;">
									<div class="col-xs-5 row">
										<div class="col-xs-10 pull-left row">
											<?php 
echo tb::dropDownList('category', '', $price_cat, ['id' => 'category', 'onchange' => 'change_category()']);
?>
										</div>
										<div class="col-xs-2 pull-right">
											<?php 
echo btn_create_top('', 'add_price()', '');
?>
										</div>
									</div>
								</div>
								<div class="box-body">
									<?php 
echo table('price');
?>
								</div>
							</div>
						</div>
					</div>
				</div>
			</div>
		</section>