put name and description in one column

This commit is contained in:
Uwe Steinmann 2020-05-26 14:12:58 +02:00
parent e5477708ad
commit 90cf72367d

View File

@ -287,8 +287,7 @@ $(document).ready( function() {
echo "<table class=\"table _table-condensed\">\n";
print "<thead>\n<tr>\n";
print "<th>".getMLText('scheduler_class')."</th>\n";
print "<th>".getMLText('task_name')."</th>\n";
print "<th>".getMLText('task_description')."</th>\n";
print "<th>".getMLText('task_name')."/".getMLText('task_description')."</th>\n";
print "<th>".getMLText('task_frequency')."</th>\n";
print "<th>".getMLText('task_next_run')."</th>\n";
print "<th>".getMLText('task_last_run')."</th>\n";
@ -303,10 +302,8 @@ $(document).ready( function() {
echo "<td>";
echo $task->getExtension()."::".$task->getTask();
echo "</td>";
echo "<td>";
echo $task->getName();
echo "</td>";
echo "<td width=\"100%\">";
echo "<strong>".$task->getName()."</strong></br>";
echo $task->getDescription();
echo "</td>";
echo "<td>";