Newer
Older
WebMCR / upload / themes / default / modules / admin / groups / group-list.html
@Qexy Qexy on 2 Mar 2016 1 KB Update to Beta 1.3
<form method="post" class="panel-menu-groups" action="<?php echo ADMIN_URL; ?>&do=groups&op=delete">
	<div class="form-block">

		<div class="block-header">
			<div class="block-name"><?php echo $this->lng_m['mod_name']; ?></div>
		</div>

		<div class="block-line"></div>

		<table class="table table-striped">
			<thead>
				<tr>
					<th><a href="#" class="sort-trigger" data-field="id" data-order="desc">#</a></th>
					<th><a href="#" class="sort-trigger" data-field="title" data-order="desc"><?php echo $this->lng_m['grp_field_name']; ?></a></th>
					<th><a href="#" class="sort-trigger" data-field="desc" data-order="desc"><?php echo $this->lng_m['grp_field_desc']; ?></a></th>
					<th class="action"><?php echo $this->lng_m['grp_field_act']; ?> <input type="checkbox" class="check-all" data-for="check-input"></th>
				</tr>
			</thead>

			<tbody>
				<?php echo $data['GROUPS']; ?>
			</tbody>
		</table>
	</div>

	<div class="form-block actions">
		<?php echo $data['PAGINATION']; ?>
		<div class="right-act">
			<div class="input-append">
				<input type="text" class="adm-search-input" id="adm-search-id" placeholder="<?php echo $this->lng['ph_search']; ?>">
				<button class="btn adm-search" data-for="#adm-search-id" type="button" rel="tooltip" title="<?php echo $this->lng['search']; ?>"><i class="icon-search"></i></button>
				<a class="btn" href="<?php echo ADMIN_URL; ?>&do=groups&op=add"><i class="icon-plus"></i></a>
				<a class="btn edit" data-for="check-input" data-link="<?php echo ADMIN_URL; ?>&do=groups&op=edit&id=" href="#"><i class="icon-pencil"></i></a>
				<button class="btn remove" data-for="check-input" data-text="<?php echo $this->lng_m['grp_accept']; ?>" type="submit" name="delete"><i class="icon-remove"></i></button>
			</div>
		</div>
		
	</div>
</form>