You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

28 lines
1017 B

{extends 'layout_view.tpl'}
{block name="navigation"}
{include file='tracker_actions.tpl'}
{/block}
{block name="title"}
{title}{$title|escape}{/title}
{/block}
{block name="content"}
<form class="form" method="post" action="{service controller=tracker action=select_tracker}" id="selectTrackerForm" role="form">
<div class="mb-3 row mx-0">
<label class="col-form-label" for="trackerId">
{tr}Tracker{/tr}
</label>
<select name="trackerId" id="trackerId" class="form-select" required="required">
{foreach from=$trackers item=tr key=k}
<option value="{$tr.trackerId|escape}">{$tr.name|escape}</option>
{/foreach}
</select>
</div>
<div class="submit text-center">
<input type="hidden" name="confirm" value="1">
<input type="submit" class="btn btn-primary" data-bs-dismiss="modal" value="{tr}Select{/tr}">
</div>
</form>
{/block}