This commit is contained in:
steven 2025-08-11 22:23:30 +02:00
commit 72a26edcff
22092 changed files with 2101903 additions and 0 deletions

54
template/tpl/test0815.tpl Normal file
View file

@ -0,0 +1,54 @@
<!-- Latest compiled and minified CSS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.2/css/bootstrap-select.min.css">
<!-- Latest compiled and minified JavaScript -->
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.2/js/bootstrap-select.min.js"></script>
<!-- (Optional) Latest compiled and minified JavaScript translation files
<script src="https://cdnjs.cloudflare.com/ajax/libs/bootstrap-select/1.13.2/js/i18n/defaults-*.min.js"></script>
-->
<td nowrap style="width:110px;font-size:11pt;">
<select class="selectpicker" name="list[{$tour.tid}][Fahrer]" >
{foreach from=$tempma item=allfahrer}
<option value="{$allfahrer.id}"
{if $allfahrer.typ==4} style="background: #bc0000; color: #5cb85c;"{/if}
{if $allfahrer.typ==3} style="background: #5cb85c; color: #fff;"{/if}
{if $allfahrer.typ==0} style="background-color:#FFB2B2;"{/if}
>
<strong>{$allfahrer.name}</strong>
</option>
{/foreach}
</select>
</td>
<!--
<select class="selectpicker"
{if $tour.auto_id==0} data-style="btn-primary"
{else} style="width:100px;border:none;border-bottom: 1px solid #dcdcdc;"
{/if}
style="width:100px;"
>
{foreach from=$tempma item=allma}
{html_options values=$allma.id output=$allma.name selected=$tour.auto_id}
{/foreach}
</select>
</td>