Visual enhancement of club's presentation

This commit is contained in:
Christian Wolf 2019-06-11 14:12:37 +02:00
parent 9cef15b4f5
commit 150dfd8f60

View File

@ -83,7 +83,10 @@ defined('_JEXEC') or die;
<?php endforeach; ?>
<h2>Posten</h2>
<table width='100%' class='table table-stiped, table-hover'>
<?php if(sizeof($this->object->getUsers()) == 0 ): ?>
<p>Dem Verein ist bisher kein Posten zugewiesen.</p>
<?php else: ?>
<table width='100%' class='table table-stiped, table-hover'>
<tr>
<th width='20%'>Rolle</th>
<th width='25%'>Name</th>
@ -105,7 +108,8 @@ defined('_JEXEC') or die;
<td><?php echo $ua->getId(); ?></td>
</tr>
<?php endforeach; ?>
</table>
</table>
<?php endif; ?>
<p><a href='#'><span class='icon-new'></span> Neuen Posten einf&uuml;gen</a></p>
<?php endif; ?>