Initial commit

This commit is contained in:
2020-01-27 08:56:08 +01:00
commit b7525048d6
27129 changed files with 3409855 additions and 0 deletions

View File

@@ -0,0 +1,51 @@
<div class="general-block-decorator">
<div class="row">
<div class="col-md-12 title title-without-tabs">
{intl d='giftoffered.bo.default' l='Module Configuration'}
</div>
</div>
<div class="row">
<div class="form-container">
<div class="col-md-3">
{if $form_error_message}<div class="alert alert-danger">{$form_error_message}</div>{/if}
{form name="giftoffered.configuration.form"}
<form method="POST" id="giftoffered-form" action="{url path="/admin/module/GiftOffered/update"}" {form_enctype form=$form} class="clearfix">
{form_hidden_fields form=$form}
{form_field form=$form field='category'}
<div class="form-group {if $error}has-error{/if}">
<label for="{$label_attr.for}" class="control-label">{$label} : </label>
<input type="hidden" id="id" name="id" value="1">
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" required="required">
<span class="label-help-block">{$label_attr.help}</span>
</div>
{/form_field}
{form_field form=$form field='amount'}
<div class="form-group {if $error}has-error{/if}">
<label for="{$label_attr.for}" class="control-label">{$label} : </label>
<input type="hidden" id="id" name="id" value="1">
<input type="text" id="{$label_attr.for}" name="{$name}" class="form-control" value="{$value}" title="{$label}" required="required">
<span class="label-help-block">{$label_attr.help}</span>
</div>
{/form_field}
<button type="submit" id="giftoffered-save" name="giftoffered_save" value="save" class="form-submit-button btn btn-sm btn-default" title="{intl d='giftoffered.bo.default' l='Save'}">{intl d='giftoffered.bo.default' l='Save'}</button>
</form>
{/form}
</div>
</div>
</div>
<div class="row">
<div class="form-container">
<br /><br />
<div class="alert alert-warning">
<h4>{intl d='giftoffered.bo.default' l='Required*'}</h4>
<ul class="list-unstyled">
<li>Category id - 3</li>
<li>Amount (product price) - 120</li>
</ul>
</div>
</div>
</div>
</div>