admin_user_status_field.html
1 year ago
confirm_unsubscribe.html
2 months ago
index.php
3 years ago
manage_subscription.html
2 months ago
unsubscribe_reason.html
2 months ago
admin_user_status_field.html
30 lines
| 1 | <% block content %> |
| 2 | <table class="form-table"> |
| 3 | <tr> |
| 4 | <th scope="row"> |
| 5 | <label for="mailpoet_subscriber_status"> |
| 6 | <%= __('MailPoet Subscriber Status', 'mailpoet') %> |
| 7 | </label> |
| 8 | </th> |
| 9 | <td> |
| 10 | <select name="mailpoet_subscriber_status" id="mailpoet_subscriber_status"> |
| 11 | <option value="<%= statuses.subscribed %>"> |
| 12 | <%= __('Subscribed', 'mailpoet') %> |
| 13 | </option> |
| 14 | |
| 15 | <% if confirmationEnabled %> |
| 16 | <option value="<%= statuses.unconfirmed %>" selected="selected"> |
| 17 | <%= __('Unconfirmed (will receive a confirmation email)', 'mailpoet') %> |
| 18 | </option> |
| 19 | <% endif %> |
| 20 | |
| 21 | <option value="<%= statuses.unsubscribed %>" |
| 22 | <% if not confirmationEnabled %>selected="selected"<% endif %>> |
| 23 | <%= __('Unsubscribed', 'mailpoet') %> |
| 24 | </option> |
| 25 | </select> |
| 26 | </td> |
| 27 | </tr> |
| 28 | </table> |
| 29 | <% endblock %> |
| 30 |