deactivationSurvey
7 years ago
emails
7 years ago
form
7 years ago
newsletter
7 years ago
settings
7 years ago
subscribers
7 years ago
blank.html
8 years ago
forms.html
7 years ago
help.html
7 years ago
index.html
8 years ago
index.php
9 years ago
invalidkey.html
8 years ago
layout.html
7 years ago
limit.html
7 years ago
mp2migration.html
7 years ago
newsletters.html
7 years ago
premium.html
7 years ago
segments.html
7 years ago
settings.html
7 years ago
update.html
7 years ago
welcome_wizard.html
7 years ago
forms.html
86 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | <div id="forms_container"></div> |
| 5 | |
| 6 | <div> |
| 7 | <p class="mailpoet_sending_methods_help help"> |
| 8 | <%= __('<strong>Tip:</strong> we have a [link]list of plugins[/link] that work with MailPoet if you need fancier forms.') |
| 9 | |replaceLinkTags('http://beta.docs.mailpoet.com/article/198-list-of-forms-plugins-that-work-with-mailpoet?utm_source=plugin&utm_medium=settings&utm_campaign=helpdocs', {'target' : '_blank', id: 'mailpoet_helper_link'}) |
| 10 | |raw |
| 11 | %> |
| 12 | </p> |
| 13 | </div> |
| 14 | |
| 15 | <% set badgeClassName = (is_new_user == true) ? 'mailpoet_badge mailpoet_badge_video' : 'mailpoet_badge mailpoet_badge_video mailpoet_badge_video_grey' %> |
| 16 | <a class="<%= badgeClassName %>" href="https://beta.docs.mailpoet.com/article/236-video-guide-setting-up-forms" target="_blank"> |
| 17 | <span class="dashicons dashicons-format-video"></span><%= __('See video guide') %> |
| 18 | </a> |
| 19 | |
| 20 | <script type="text/javascript"> |
| 21 | var mailpoet_listing_per_page = <%= items_per_page %>; |
| 22 | var mailpoet_segments = <%= json_encode(segments) %>; |
| 23 | var mailpoet_form_edit_url = |
| 24 | "<%= admin_url('admin.php?page=mailpoet-form-editor&id=') %>"; |
| 25 | </script> |
| 26 | <% endblock %> |
| 27 | |
| 28 | <% block translations %> |
| 29 | <%= localize({ |
| 30 | 'pageTitle': __('Forms'), |
| 31 | 'searchLabel': __('Search'), |
| 32 | 'loadingItems': __('Loading forms...'), |
| 33 | 'noItemsFound': __('No forms were found. Why not create a new one?'), |
| 34 | 'selectAllLabel': __('All forms on this page are selected.'), |
| 35 | 'selectedAllLabel': __('All %d forms are selected.'), |
| 36 | 'selectAllLink': __('Select all forms on all pages'), |
| 37 | 'clearSelection': __('Clear selection'), |
| 38 | 'permanentlyDeleted': __('%d forms permanently deleted.'), |
| 39 | 'selectBulkAction': __('Select bulk action'), |
| 40 | 'bulkActions': __('Bulk Actions'), |
| 41 | 'apply': __('Apply'), |
| 42 | 'filter': __('Filter'), |
| 43 | 'emptyTrash': __('Empty Trash'), |
| 44 | 'selectAll': __('Select All'), |
| 45 | 'restore': __('Restore'), |
| 46 | 'deletePermanently': __('Delete Permanently'), |
| 47 | |
| 48 | 'previousPage': __('Previous page'), |
| 49 | 'firstPage': __('First page'), |
| 50 | 'nextPage': __('Next page'), |
| 51 | 'lastPage': __('Last page'), |
| 52 | 'currentPage': __('Current Page'), |
| 53 | 'pageOutOf': __('of'), |
| 54 | 'numberOfItemsSingular': __('1 item'), |
| 55 | 'numberOfItemsMultiple': __('%$1d items'), |
| 56 | |
| 57 | 'formName': __('Name'), |
| 58 | 'segments': __('Lists'), |
| 59 | 'userChoice': __('User choice:'), |
| 60 | 'signups': __('Sign-ups'), |
| 61 | 'createdOn': __('Created On'), |
| 62 | 'oneFormTrashed': __('1 form was moved to the trash.'), |
| 63 | 'multipleFormsTrashed': __('%$1d forms were moved to the trash.'), |
| 64 | 'oneFormDeleted': __('1 form was permanently deleted.'), |
| 65 | 'multipleFormsDeleted': __('%$1d forms were permanently deleted.'), |
| 66 | 'oneFormRestored': __('1 form has been restored from the trash.'), |
| 67 | 'multipleFormsRestored': __('%$1d forms have been restored from the trash.'), |
| 68 | 'edit': __('Edit'), |
| 69 | 'duplicate': __('Duplicate'), |
| 70 | 'formDuplicated': __('Form "%$1s" has been duplicated.'), |
| 71 | 'trash': __('Trash'), |
| 72 | 'moveToTrash': __('Move to trash'), |
| 73 | 'new': __('Add New'), |
| 74 | }) %> |
| 75 | <% endblock %> |
| 76 | |
| 77 | <% block after_javascript %> |
| 78 | <script type="text/javascript"> |
| 79 | jQuery('#mailpoet_helper_link').on('click', function() { |
| 80 | MailPoet.trackEvent('Forms page > link to doc page', { |
| 81 | 'MailPoet Free version': window.mailpoet_version |
| 82 | }); |
| 83 | }); |
| 84 | </script> |
| 85 | <% endblock %> |
| 86 |