Added currency field type.
This commit is contained in:
@ -25,3 +25,6 @@
|
||||
{{#fieldtype_status}}
|
||||
{{>mdl_input_status}}
|
||||
{{/fieldtype_status}}
|
||||
{{#fieldtype_currency}}
|
||||
{{>mdl_input_currency}}
|
||||
{{/fieldtype_currency}}
|
||||
|
7
templates/partials/mdl_input_currency.mustache
Normal file
7
templates/partials/mdl_input_currency.mustache
Normal file
@ -0,0 +1,7 @@
|
||||
<p>
|
||||
<select name="{{field_id}}" size="1">
|
||||
<option value="EUR">Euro - €</option>
|
||||
<option value="USD">US Dollar - $</option>
|
||||
<option value="GBP">British Pound - £</option>
|
||||
</select>
|
||||
</p>
|
Reference in New Issue
Block a user