automation
2 years ago
deactivationPoll
3 years ago
emails
3 years ago
form
2 years ago
newsletter
3 years ago
segments
2 years ago
subscribers
2 years ago
subscription
3 years ago
woocommerce
3 years ago
automation.html
3 years ago
blank.html
4 years ago
experimental-features.html
4 years ago
forms.html
3 years ago
help.html
3 years ago
homepage.html
2 years ago
index.php
3 years ago
landingpage.html
3 years ago
layout.html
2 years ago
logs.html
4 years ago
mss_pitch_translations.html
3 years ago
newsletters.html
2 years ago
premium_key_validation_strings.html
3 years ago
settings.html
3 years ago
settings_translations.html
3 years ago
upgrade.html
3 years ago
welcome_wizard.html
2 years ago
woo_system_info.html
2 years ago
woocommerce_setup.html
2 years ago
logs.html
34 lines
| 1 | <% extends 'layout.html' %> |
| 2 | |
| 3 | <% block content %> |
| 4 | |
| 5 | <div class="wrap"> |
| 6 | <h1 class="mailpoet-h1">Logs</h1> |
| 7 | |
| 8 | <div id="mailpoet_logs_container"></div> |
| 9 | |
| 10 | <script type="text/javascript"> |
| 11 | <% autoescape 'js' %> |
| 12 | var mailpoet_logs = <%= json_encode(logs) %>; |
| 13 | <% endautoescape %> |
| 14 | </script> |
| 15 | </div> |
| 16 | |
| 17 | <% endblock %> |
| 18 | |
| 19 | <% block translations %> |
| 20 | <%= localize({ |
| 21 | 'pageTitle': __('Logs'), |
| 22 | 'tableHeaderName': __('Name'), |
| 23 | 'tableHeaderMessage': __('Message'), |
| 24 | 'tableHeaderCreatedOn': __('Created On'), |
| 25 | 'searchLabel': __('Search'), |
| 26 | 'offsetLabel': __('Offset'), |
| 27 | 'limitLabel': __('Limit'), |
| 28 | 'from': _x('From', 'date from'), |
| 29 | 'to': _x('To', 'date to'), |
| 30 | 'filter': __('Filter'), |
| 31 | }) %> |
| 32 | <% endblock %> |
| 33 | |
| 34 |