{% load i18n %}

{% include "content/_edit_title.html" %}

{% csrf_token %}
{{ form.text }} {% trans "You can upload images using the camera icon or by dragging them to the text area. Valid file types: png/jpg/svg/gif." %}
{{ form.text.errors }}
{% if not is_reply %}
{{ form.recipients }} {% trans "Type in the handles (eg user@example.com) of the recipients. Separate by commas. Sorry, no search yet.." %}
{{ form.recipients.errors }}
{{ form.include_following }} {{ form.include_following.help_text }}
{{ form.include_following.errors }}
{{ form.visibility }}
  • {% trans "Public - visible to anyone, even anonymous users and internet search bots." %}
  • {% trans "Limited - visible to only those who shared with." %}
  • {% trans "Site - visible to only users who are logged in. Does not federate to other servers." %}
  • {% trans "Self - visible to only self. Does not federate to other servers." %}

{% trans "Tip: You can use the 'Self' visibility to create draft content and then change the visibility to for example 'Public' when you want to publish it." %}

{{ form.visibility.errors }}
{% endif %}
{% if not is_reply %}
{{ form.pinned }} {% trans "Pinned content will be shown on your personal profile in the order you want. Reorder pinned content from the profile menu. Pinned content will federate and otherwise function as any other content." %}
{{ form.pinned.errors }}
{{ form.federate }} {{ form.federate.help_text }}
{{ form.federate.errors }}
{% endif %}
{{ form.show_preview }} {{ form.show_preview.help_text }}
{{ form.show_preview.errors }}
{# "Hidden" form for image upload input #}