templatesLegacy
2 years ago
custom_fields_legacy.html
4 years ago
editor.html
1 week ago
form_preview.html
4 years ago
front_end_form.html
2 months ago
iframe.html
2 years ago
index.php
3 years ago
template_selection.html
2 years ago
template_selection.html
19 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <div class="block-editor"> |
| 5 | <div id="mailpoet_form_edit_templates"> |
| 6 | </div> |
| 7 | </div> |
| 8 | |
| 9 | <script> |
| 10 | <% autoescape 'js' %> |
| 11 | var mailpoet_templates = <%= json_encode(templates) %>; |
| 12 | var mailpoet_form_edit_url = |
| 13 | "<%= admin_url('admin.php?page=mailpoet-form-editor&template_id=') %>"; |
| 14 | <% endautoescape %> |
| 15 | </script> |
| 16 | |
| 17 | <style id="mailpoet-form-editor-form-styles"></style> |
| 18 | <% endblock %> |
| 19 |