Trie dans les domaines type
This commit is contained in:
parent
fd5c458b0a
commit
5c78a4854e
|
@ -52,7 +52,8 @@ if (!empty($error)) {
|
||||||
<?php __("Here is the list of domain types."); ?>
|
<?php __("Here is the list of domain types."); ?>
|
||||||
</p>
|
</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>
|
<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'>
|
<tr class='petit'>
|
||||||
<th colspan="2"> </th>
|
<th colspan="2"> </th>
|
||||||
<th><?php __("Name");?></th>
|
<th><?php __("Name");?></th>
|
||||||
|
@ -67,6 +68,7 @@ if (!empty($error)) {
|
||||||
<th><?php __("Create tmp directory ?");?></th>
|
<th><?php __("Create tmp directory ?");?></th>
|
||||||
<th><?php __("create www directory ?");?></th>
|
<th><?php __("create www directory ?");?></th>
|
||||||
</tr>
|
</tr>
|
||||||
|
</thead>
|
||||||
<?php
|
<?php
|
||||||
foreach($dom->domains_type_lst() as $d) {
|
foreach($dom->domains_type_lst() as $d) {
|
||||||
?>
|
?>
|
||||||
|
@ -89,4 +91,13 @@ foreach($dom->domains_type_lst() as $d) {
|
||||||
?>
|
?>
|
||||||
</table>
|
</table>
|
||||||
|
|
||||||
|
<script type="text/javascript">
|
||||||
|
|
||||||
|
$(document).ready(function()
|
||||||
|
{
|
||||||
|
$("#table_domtype").tablesorter();
|
||||||
|
}
|
||||||
|
);
|
||||||
|
</script>
|
||||||
|
|
||||||
<?php include_once("foot.php"); ?>
|
<?php include_once("foot.php"); ?>
|
||||||
|
|
Loading…
Reference in New Issue