editor.html 481 B

123456789101112131415
  1. {% macro editor(field, submit_button) %}
  2. <div class="editor">
  3. <div class="editor-input">
  4. <div>
  5. <textarea name="{{ field.html_name }}" id="{{ field.html_id }}" rows="4">{% if field.has_value %}{{ field.value }}{% endif %}</textarea>
  6. </div>
  7. </div>
  8. <div class="editor-actions">
  9. <button name="save" type="submit" class="btn btn-primary pull-right">{{ submit_button }}</button>
  10. </div>
  11. </div>
  12. {% endmacro %}
  13. {% macro editor_js() %}
  14. {% endmacro %}