blob: 9e83f96597072bc745a61c03efbaf10b0cfe18ab (
plain) (
tree)
|
|
<form role="form" enctype="multipart/form-data" method="post" action="?do=SysConfig&action=addmodule&step=AddModule_Assign">
<input type="hidden" name="token" value="{{token}}">
<input type="hidden" name="edit" value="{{edit}}">
<input type="hidden" name="assign" value="true">
{{#configs}}
<div class="input-group">
<span class="input-group-addon">
<div class="checkbox">
<input type="checkbox" name="configs[]" value="{{configid}}" id="config{{configid}}">
<label></label>
</div>
</span>
<label class="form-control config-label" for="config{{configid}}">
<span>{{title}}</span>
{{#replaces}}<span class="text-danger">{{lang_replaces}} {{.}}</span>{{/replaces}}
</label>
</div>
{{/configs}}
<div class="text-right" style="margin-top: 12px">
<button type="submit" class="btn btn-primary"><span class="glyphicon glyphicon-floppy-disk"></span> {{lang_save}}</button>
</div>
</form>
<style>
.config-label {
display: flex !important;
justify-content: space-between !important;
}
</style>
|