- added screen option to set number of items per page - improved bulk actions in order to handle large sets
24 lines
773 B
HTML
24 lines
773 B
HTML
<% extends 'layout.html' %>
|
|
|
|
<% block content %>
|
|
<div id="forms_container"></div>
|
|
|
|
<%= localize({
|
|
'pageTitle': __('Forms'),
|
|
'searchLabel': __('Search'),
|
|
'loadingItems': __('Loading forms...'),
|
|
'noItemsFound': __('No forms found.'),
|
|
'selectAllLabel': __('All forms on this page are selected.'),
|
|
'selectedAllLabel': __('All %d forms are selected.'),
|
|
'selectAllLink': __('Select all forms on all pages.'),
|
|
'clearSelection': __('Clear selection.'),
|
|
'permanentlyDeleted': __('%d forms permanently deleted.')
|
|
}) %>
|
|
|
|
<script type="text/javascript">
|
|
var mailpoet_segments = <%= json_encode(segments) %>;
|
|
var mailpoet_form_edit_url =
|
|
"<%= admin_url('admin.php?page=mailpoet-form-editor&id=') %>";
|
|
</script>
|
|
<% endblock %>
|