mirror of
https://git.code.sf.net/p/seeddms/code
synced 2025-03-12 08:55:54 +00:00
better html layout
This commit is contained in:
parent
f48bdb1280
commit
8a2aa4bdda
|
@ -146,11 +146,10 @@ $(document).ready( function() {
|
|||
<?php
|
||||
$this->columnEnd();
|
||||
$this->columnStart(6);
|
||||
print "<table class=\"table-condensed\">\n";
|
||||
if ((count($notifyList["users"]) == 0) && (count($notifyList["groups"]) == 0)) {
|
||||
print "<tr><td>".getMLText("empty_notify_list")."</td></tr>";
|
||||
}
|
||||
else {
|
||||
$this->infoMsg(getMLText("empty_notify_list"));
|
||||
} else {
|
||||
print "<table class=\"table table-condensed table-sm mt-4\">\n";
|
||||
foreach ($notifyList["users"] as $userNotify) {
|
||||
print "<tr>";
|
||||
print "<td><i class=\"fa fa-user\"></i></td>";
|
||||
|
@ -185,8 +184,8 @@ $(document).ready( function() {
|
|||
}else print "<td></td>";
|
||||
print "</tr>";
|
||||
}
|
||||
}
|
||||
print "</table>\n";
|
||||
}
|
||||
|
||||
$this->columnEnd();
|
||||
$this->rowEnd();
|
||||
|
|
|
@ -146,11 +146,10 @@ $(document).ready(function() {
|
|||
<?php
|
||||
$this->columnEnd();
|
||||
$this->columnStart(6);
|
||||
print "<table class=\"table-condensed\">\n";
|
||||
if (empty($notifyList["users"]) && empty($notifyList["groups"])) {
|
||||
print "<tr><td>".getMLText("empty_notify_list")."</td></tr>";
|
||||
}
|
||||
else {
|
||||
$this->infoMsg(getMLText("empty_notify_list"));
|
||||
} else {
|
||||
print "<table class=\"table table-condensed table-sm\">\n";
|
||||
foreach ($notifyList["users"] as $userNotify) {
|
||||
print "<tr>";
|
||||
print "<td><i class=\"fa fa-user\"></i></td>";
|
||||
|
@ -185,8 +184,8 @@ $(document).ready(function() {
|
|||
}else print "<td></td>";
|
||||
print "</tr>";
|
||||
}
|
||||
}
|
||||
print "</table>\n";
|
||||
}
|
||||
|
||||
$this->columnEnd();
|
||||
$this->rowEnd();
|
||||
|
|
Loading…
Reference in New Issue
Block a user