mirror of
https://github.com/discourse/discourse.git
synced 2025-02-25 18:55:32 -06:00
37 lines
1.4 KiB
Handlebars
37 lines
1.4 KiB
Handlebars
<div class="modal-body flag-modal">
|
|
{{#if view.post.flagsAvailable}}
|
|
<form>
|
|
{{#each view.boundFlags}}
|
|
<div class='controls'>
|
|
<label class='radio'>
|
|
<input type='radio' id="radio_{{unbound name_key}}" {{action changePostActionType this target="view"}} name='post_action_type_index'> <strong>{{formattedName}}</strong>
|
|
{{#if is_custom_flag}}
|
|
{{#unless selected}}
|
|
<div class='description'>{{{description}}}</div>
|
|
{{/unless}}
|
|
{{else}}
|
|
{{#if description}}
|
|
<div class='description'>{{{description}}}</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
</label>
|
|
{{#if is_custom_flag}}
|
|
{{#if selected}}
|
|
{{view Ember.TextArea name="message" class="flag-message" placeholderBinding="customPlaceholder" valueBinding="message"}}
|
|
<div {{bindAttr class="customMessageLengthClasses"}}>{{customMessageLength}}</div>
|
|
{{/if}}
|
|
{{/if}}
|
|
</div>
|
|
{{/each}}
|
|
</form>
|
|
{{else}}
|
|
{{i18n flagging.cant}}
|
|
{{/if}}
|
|
</div>
|
|
|
|
{{#if view.showSubmit}}
|
|
<div class="modal-footer">
|
|
<button class='btn btn-primary' {{action createFlag target="view"}}>{{view.submitText}}</button>
|
|
</div>
|
|
{{/if}}
|