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
1.1 KiB

{extends "layout_view.tpl"}
{block name="title"}{$title}{/block}
{block name="content"}
<form class="form simple import-fields" action="{service controller=tracker action=import_fields}" method="post" role="form">
<div class="mb-3 row mx-0">
<label class="col-form-label">
{tr}Raw Fields{/tr}
</label>
<textarea class="form-control" name="raw" rows="30"></textarea>
</div>
<div class="form-check">
<label>
<input type="checkbox" class="form-check-input" name="preserve_ids" value="1">
{tr}Preserve Field IDs{/tr}
</label>
<label>
<input type="checkbox" class="form-check-input" name="last_position" checked="checked" value="1">
{tr}Imported fields at the bottom of the list{/tr}
</label>
</div>
<div class="mb-3 submit">
<input type="hidden" name="trackerId" value="{$trackerId|escape}">
<input type="submit" class="btn btn-primary" value="{tr}Import{/tr}">
</div>
</form>
{/block}