templates/twenty-one/supportticketsubmit-customf...

10 lines
325 B
Smarty
Raw Normal View History

2024-05-31 15:56:23 +02:00
{foreach $customfields as $customfield}
<div class="form-group">
<label for="customfield{$customfield.id}">{$customfield.name}</label>
{$customfield.input}
{if $customfield.description}
<p class="form-text text-muted">{$customfield.description}</p>
{/if}
</div>
{/foreach}