{% 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." %}
{% if not is_reply %}
{{ form.visibility }}
  • {% trans "Public - visible to anyone, even anonymous users and internet search bots." %}
  • {% trans "Limited - visible to only those who shared with. NOTE! Currently cannot be shared, so visible to only self." %}
  • {% trans "Site - visible to only users who are logged in." %}
  • {% trans "Self - visible to only self." %}

{% trans "NOTE! Currently only 'Public' content will federate." %}

{% 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." %}

{% 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.federate }} {{ form.federate.help_text }}
{% endif %}
{{ form.show_preview }} {{ form.show_preview.help_text }}
{# "Hidden" form for image upload input #}