{% extends "dashboard/layout.html" %} {% block title %}{{ _('Notification Preferences – OnlineConvert') }}{% endblock %} {% set active_page = 'notifications' %} {% block dashboard_content %}

{{ _('Email Notifications') }}

{{ _('Choose which emails you want to receive from us.') }}

{{ _('Notification Settings') }}

{% for event, label, description in [ ('login', _('Login Alerts'), _('Get an email each time your account is logged into')), ('file_uploaded', _('File Uploads'), _('Notification when a file is uploaded or converted')), ('blog_submitted', _('Blog Submissions'), _('Confirmation when you submit a blog post for review')), ('blog_reviewed', _('Blog Review Results'), _('Notification when your blog post is approved or rejected')), ('blog_published', _('Blog Published'), _('Notification when your blog post goes live')), ('plan_changed', _('Plan Changes'), _('Notification when your subscription plan changes')), ('payment_received', _('Payment Confirmations'), _('Receipts for payments made to your account')), ('referral_signup', _('Referral Signups'), _('When someone registers using your referral link')), ('password_changed', _('Password Changes'), _('Security alert when your password is changed')), ] %}
{{ label }}
{{ description }}
{% endfor %}

{{ _('Changes take effect immediately.') }}

{% endblock %}