示例#1
0
文件: index.php 项目: hexti/casamento
		<div class="panel panel-default">
			<div class="panel-heading">
				
				<div class="col-lg-11">
					<h4>Lista de Fontes</h4>
				</div>
				
				<a class="btn btn-primary" href="new.php"><span class="glyphicon glyphicon-plus text-bold" aria-hidden="true"></span> Novo</a>

			</div>
			<div class="panel-body">
				<table class="table table-striped table-condensed table-bordered">
					<thead>
						<tr>
							<th>Nome</th>
							<th>Ação</th>
						</tr>
					</thead>
					<tbody>
						<?php 
$DAO->listar(MYSQL_BASE_FONTES, $campos, 'excluido IS NULL');
?>
					</tbody>
				</table>
			</div>
		</div>
	</div>
</div>

<?php 
include_once '../footer.php';
示例#2
0
文件: index.php 项目: hexti/tocksys
		<div class="panel panel-default">
			<div class="panel-heading">
				
				<div class="col-lg-11">
					<h4>Lista de Categorias</h4>
				</div>
				
				<a class="btn btn-primary" href="new.php"><span class="glyphicon glyphicon-plus text-bold" aria-hidden="true"></span> Novo</a>

			</div>
			<div class="panel-body">
				<table class="table table-striped table-condensed table-bordered">
					<thead>
						<tr>
							<th>Nome</th>
							<th>Ação</th>
						</tr>
					</thead>
					<tbody>
						<?php 
$DAO->listar(MYSQL_BASE_CATEGORIAS, $campos, 'excluido IS NULL');
?>
					</tbody>
				</table>
			</div>
		</div>
	</div>
</div>

<?php 
include_once '../footer.php';
示例#3
0
文件: index.php 项目: hexti/casamento
		<div class="panel panel-default">
			<div class="panel-heading">
				
				<div class="col-lg-11">
					<h4>Lista de Despesas</h4>
				</div>
				
				<a class="btn btn-primary" href="new.php"><span class="glyphicon glyphicon-plus text-bold" aria-hidden="true"></span> Novo</a>

			</div>
			<div class="panel-body">
				<table class="table table-striped table-condensed table-bordered">
					<thead>
						<tr>
							<th>Nome</th>
							<th>Ação</th>
						</tr>
					</thead>
					<tbody>
						<?php 
$DAO->listar(MYSQL_BASE_DESPESAS, $campos, 'excluido IS NULL');
?>
					</tbody>
				</table>
			</div>
		</div>
	</div>
</div>

<?php 
include_once '../footer.php';