{%- extends 'default.html' -%} {%- block content -%}
{%- include "submission_listing.html" -%}
Submit a Scheduled Post

This tool allows you to submit a scheduled post. It will be submitted as you at the scheduled date and time, and will perform tasks as if a post was submitted manually (including notifying any subscribers and any post-submit actions).
You may use Python strftime formatting in the title of your submitted post if you want to include the date in your submitted post.

{# (label, name, id, min_length=none, max_length=none, required=false) #} {{forms.text_field("Title", "title", "title", min_length=0, max_length=SUBMISSION_TITLE_LENGTH_MAXIMUM, required=true)}} {{forms.text_field("URL (optional)", "url", "url", min_length=0, max_length=2048, required=false)}} {{forms.textarea_field("Body", "body", "body", min_length=0, max_length=SUBMISSION_BODY_LENGTH_MAXIMUM, required=false)}} {{forms.scheduled_post_time_selection_form(v, none)}}
{%- endblock -%}