mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-10-18 15:00:59 +00:00
put name and description in one column
This commit is contained in:
parent
e5477708ad
commit
90cf72367d
|
@ -287,8 +287,7 @@ $(document).ready( function() {
|
||||||
echo "<table class=\"table _table-condensed\">\n";
|
echo "<table class=\"table _table-condensed\">\n";
|
||||||
print "<thead>\n<tr>\n";
|
print "<thead>\n<tr>\n";
|
||||||
print "<th>".getMLText('scheduler_class')."</th>\n";
|
print "<th>".getMLText('scheduler_class')."</th>\n";
|
||||||
print "<th>".getMLText('task_name')."</th>\n";
|
print "<th>".getMLText('task_name')."/".getMLText('task_description')."</th>\n";
|
||||||
print "<th>".getMLText('task_description')."</th>\n";
|
|
||||||
print "<th>".getMLText('task_frequency')."</th>\n";
|
print "<th>".getMLText('task_frequency')."</th>\n";
|
||||||
print "<th>".getMLText('task_next_run')."</th>\n";
|
print "<th>".getMLText('task_next_run')."</th>\n";
|
||||||
print "<th>".getMLText('task_last_run')."</th>\n";
|
print "<th>".getMLText('task_last_run')."</th>\n";
|
||||||
|
@ -303,10 +302,8 @@ $(document).ready( function() {
|
||||||
echo "<td>";
|
echo "<td>";
|
||||||
echo $task->getExtension()."::".$task->getTask();
|
echo $task->getExtension()."::".$task->getTask();
|
||||||
echo "</td>";
|
echo "</td>";
|
||||||
echo "<td>";
|
|
||||||
echo $task->getName();
|
|
||||||
echo "</td>";
|
|
||||||
echo "<td width=\"100%\">";
|
echo "<td width=\"100%\">";
|
||||||
|
echo "<strong>".$task->getName()."</strong></br>";
|
||||||
echo $task->getDescription();
|
echo $task->getDescription();
|
||||||
echo "</td>";
|
echo "</td>";
|
||||||
echo "<td>";
|
echo "<td>";
|
||||||
|
|
Loading…
Reference in New Issue
Block a user