zulip/static/templates/settings/profile-field-choice.handle...

13 lines
626 B
Handlebars
Raw Normal View History

2018-04-12 11:17:52 +02:00
<div class='choice-row'>
<input type='text' data-toggle='tooltip' title='{{t "Text" }}' placeholder='{{t "Text" }}' value="{{ text }}" />
<input type='text' data-toggle='tooltip' title='{{t "Order" }}' placeholder='{{t "Order" }}' value="{{ order }}" />
{{#if add_delete_button }}
<button type='button' class="button rounded small btn-danger delete-choice" title="{{t 'Delete' }}">
<i class="icon-vector-trash"></i>
</button>
{{/if}}
<button type='button' class="button rounded small sea-green add-choice" title="{{t 'Add' }}">
<i class="icon-vector-plus"></i>
</button>
</div>