Showing new Journal button even if there are no entries already

This commit is contained in:
Frank Schubert
2023-02-24 15:57:36 +01:00
parent 4a98679be0
commit fc95698904

View File

@@ -223,8 +223,9 @@
<div class="card-body">
<div class="row justify-content-center">
<div class="col-8">
<?php if(is_array($contract->journals) && count($contract->journals)): ?>
<table class="table table-striped table-sm journal">
<?php if(is_array($contract->journals) && count($contract->journals)): ?>
<?php foreach($contract->journals as $j): ?>
<tr>
<td style="white-space: nowrap" class="text-monospace"><?=date("d.m.Y H:i", $j->create)?> (<?=$j->creator?>)</td>
@@ -271,7 +272,8 @@
</td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
<tr>
<td colspan="4">
<div class="ml-3"><button type="button" class="btn btn-sm btn-info" onclick="$('#new-journal').toggle()"><i class="fas fa-plus"></i> Journaleintrag hinzufügen</button></div>
@@ -301,9 +303,8 @@
</tr>
</table>
<?php endif; ?>
</div>
</div>
</div>