{% extends "base.html" %} {% block title %}{{ _('Pay to Publish') }} – OnlineConvert{% endblock %} {% block content %}

{{ _('Publish Your Blog Post') }}

{% with messages = get_flashed_messages(with_categories=true) %}{% for cat, msg in messages %}{% endfor %}{% endwith %}
{{ _('Blog Post') }}

{{ blog.title }}

{% if blog.summary %}

{{ blog.summary }}

{% endif %}
{% if blog.admin_note %}
{{ _('Note from Admin') }}
{{ blog.admin_note }}
{% endif %}
{{ _('Publication Fee') }}
${{ '%.2f'|format(blog.publish_fee) }}
{% if blog.payment_status == 'pending_manual' %}
{{ _('Manual Payment Requested') }}

{{ _('Your manual payment request has been submitted. The admin will review and confirm it. Your post will be published once confirmed.') }}

{% else %}
{{ _('After payment:') }} {{ _('Your blog post will be immediately published and visible to all visitors.') }}
{% if has_stripe %}
{% endif %} {% if has_paypal %}
{% endif %} {% if not has_stripe and not has_paypal %}
{{ _('Online payment is not available right now. Please use the manual payment option below.') }}
{% endif %}
{% if manual_enabled %}
{% endif %} {% endif %}

{{ _('Have questions?') }} {{ _('Contact us') }}  ·  {{ _('Back to my posts') }}

{% endblock %}