base_block_settings_struct.html 724 B

1234567891011121314151617
  1. {% load wagtailadmin_tags %}
  2. <div class="{{ classname }} codered-collapsible collapsed c-sf-container">
  3. <button type="button" class="button button-small">
  4. <i class="icon icon-fa-cog" aria-hidden="true"></i> Advanced Settings
  5. </button>
  6. <div class="codered-collapsible-target" style="display:none;">
  7. {% for child in children.values %}
  8. <div class="field {% if child.block.required %}required{% endif %}" data-contentpath="{{ child.block.name }}">
  9. {% if child.block.label %}
  10. <label class="field__label" {% if child.id_for_label %}for="{{ child.id_for_label }}"{% endif %}>{{ child.block.label }}</label>
  11. {% endif %}
  12. {{ child.render_form }}
  13. </div>
  14. {% endfor %}
  15. </div>
  16. </div>