52 lines
2.5 KiB
HTML
52 lines
2.5 KiB
HTML
<div class="row">
|
|
<div class="col-md-12 general-block-decorator">
|
|
<div class="row">
|
|
<div class="col-md-12 title title-without-tabs">
|
|
{intl d='invoiceref.ai' l="Invoice ref Configuration"}
|
|
</div>
|
|
</div>
|
|
|
|
<div class="form-container">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
{form name="invoiceref_configuration"}
|
|
|
|
<form action="{url path="/admin/module/InvoiceRef/configure"}" method="post">
|
|
{form_hidden_fields form=$form}
|
|
|
|
{include file = "includes/inner-form-toolbar.html"
|
|
hide_flags = true
|
|
page_url = "{url path='/admin/module/InvoiceRef'}"
|
|
close_url = "{url path='/admin/modules'}"
|
|
}
|
|
|
|
{if $form_error}
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="alert alert-danger">{$form_error_message}</div>
|
|
</div>
|
|
</div>
|
|
{/if}
|
|
|
|
<div class="row">
|
|
<div class="col-md-4">
|
|
{form_field form=$form field="invoice"}
|
|
<div class="form-group {if $error}has-error{/if}">
|
|
<label for="{$label_attr.for}" class="control-label">
|
|
{$label} {if $required} <span class="required">*</span>{/if}
|
|
|
|
{form_error form=$form field="invoice"}
|
|
<br />
|
|
<span class="error">{$message}</span>
|
|
{/form_error}
|
|
<input type="text" {if $required}aria-required="true" required{/if} placeholder="{$label}" id="{$label_attr.for}" name="{$name}" value="{$value}" class="form-control" />
|
|
</label>
|
|
{/form_field}
|
|
</div>
|
|
</div>
|
|
</form>
|
|
{/form}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div> |