Lauout tweaks for Pipe- and Linework

This commit is contained in:
Frank Schubert
2025-04-15 19:00:12 +02:00
parent b90f4a2454
commit 9884efddd5
2 changed files with 4 additions and 4 deletions

View File

@@ -183,13 +183,13 @@
<?php $i = 0; foreach($building->workflowitems as $item): ?>
<?php if($i==0): ?>
<?php if($item->type == "delimiter"): ?>
<tr class="workflow-header"><th colspan='<?=$wfColspan?>'><h4 <?=($item->style) ? "style='".$item->style."'" : ""?>><?=$item->label?></h4></th></tr><tr>
<tr class="workflow-header"><th colspan='<?=$wfColspan?>' <?=($item->style) ? "style='".$item->style."'" : ""?>><?=$item->label?></th></tr><tr>
<?php else: ?>
<tr>
<?php endif; ?>
<?php else: ?>
<?php if($item->type == "delimiter"): ?>
</tr><tr class="workflow-header"><th colspan='<?=$wfColspan?>'><h4 <?=($item->style) ? "style='".$item->style."'" : ""?>><?=$item->label?></h4></th></tr><tr>
</tr><tr class="workflow-header"><th colspan='<?=$wfColspan?>' <?=($item->style) ? "style='".$item->style."'" : ""?>><?=$item->label?></th></tr><tr>
<?php else: ?>
<?php include(realpath(dirname(__FILE__)."/../")."/Workflow/form.php"); ?>
<?php endif; ?>