WIP 2024-12-16 ConstructionConsent

This commit is contained in:
Frank Schubert
2024-12-17 14:23:14 +01:00
parent 4b5b1e01f5
commit 8d692db5b1
6 changed files with 314 additions and 31 deletions

View File

@@ -78,6 +78,9 @@ $pagination_entity_name = "Zustimmungserklärungsprojekte";
<tr>
<th>Projektname</th>
<th>Netzgebiete</th>
<th>Kontakt</th>
<th>Email Absender</th>
<th>Antwort an</th>
<th></th>
</tr>
<?php foreach($projects as $project): ?>
@@ -92,6 +95,12 @@ $pagination_entity_name = "Zustimmungserklärungsprojekte";
</ul>
<?php endif; ?>
</td>
<td>
<?=$project->email?><br />
<?=$project->phone?>
</td>
<td><?=$project->sender_name?> &lt;<?=$project->sender_email?>&gt;</td>
<td><?=$project->sender_reply_to?></td>
<td style="text-align: left; letter-spacing: 4px; font-size: 1.1em;">
<a href="<?=self::getUrl("ConstructionConsentProject", "edit", ["id" => $project->id])?>"><i class="far fa-edit" title="Bearbeiten"></i></a>
</td>