Trie dans les domaines type

This commit is contained in:
Alan Garcia 2014-01-17 14:32:24 +00:00
parent fd5c458b0a
commit 5c78a4854e
1 changed files with 12 additions and 1 deletions

View File

@ -52,7 +52,8 @@ if (!empty($error)) {
<?php __("Here is the list of domain types."); ?>
</p>
<p><span class="ina"><a href="#" OnClick="alert('Todo. But if you want to play with that, you are advanced enough to do an insert in MySQL');" ><?php __("Create a domain type"); ?></a></span></p>
<table class="tlist ombrage">
<table class="tlist ombrage" id="table_domtype">
<thead>
<tr class='petit'>
<th colspan="2"> </th>
<th><?php __("Name");?></th>
@ -67,6 +68,7 @@ if (!empty($error)) {
<th><?php __("Create tmp directory ?");?></th>
<th><?php __("create www directory ?");?></th>
</tr>
</thead>
<?php
foreach($dom->domains_type_lst() as $d) {
?>
@ -89,4 +91,13 @@ foreach($dom->domains_type_lst() as $d) {
?>
</table>
<script type="text/javascript">
$(document).ready(function()
{
$("#table_domtype").tablesorter();
}
);
</script>
<?php include_once("foot.php"); ?>