mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 03:18:23 +00:00
c22e2de2d8
<img width="794" alt="Screenshot 2023-08-25 at 6 38 21 AM" src="https://github.com/discourse/discourse/assets/50783505/f5cf6fa0-7a2f-4e38-93e2-657fb01f6703">
26 lines
659 B
Handlebars
26 lines
659 B
Handlebars
<DModal
|
|
class="form-templates__validation-options admin-form-template-validation-options-modal"
|
|
@title={{i18n "admin.form_templates.validations_modal.modal_title"}}
|
|
@closeModal={{@closeModal}}
|
|
>
|
|
<:body>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
{{#each this.tableHeaders as |header|}}
|
|
<th>{{header}}</th>
|
|
{{/each}}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{{#each this.validations as |item|}}
|
|
<tr>
|
|
<td><pre>{{item.key}}</pre></td>
|
|
<td>{{item.type}}</td>
|
|
<td>{{item.description}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
</tbody>
|
|
</table>
|
|
</:body>
|
|
</DModal> |