{% extends "base.html" %} {% block title %}{{ _('Dashboard – OnlineConvert') }}{% endblock %} {% block content %}
{% if user and not user.get('email_verified', 1) %}
{{ _('Please verify your email address.') }} {{ _('Check your inbox for a verification link.') }}
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %}{% for cat, msg in messages %}{% endfor %}{% endwith %} {% block dashboard_content %}{% endblock %}
{% endblock %}