{% extends "base.html" %} {% load i18n %} {% block title %} {% include "content/_edit_title.html" %} {% endblock %} {% block content %}

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

{% csrf_token %}
{{ form.text }} {% trans "You can upload png/jpg/svg files by dragging them to the text area." %}
{% 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." %}

{{ 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." %}
{% endif %}
{% endblock %} {% block javascript %} {{ block.super }} {{ form.media }} {% endblock %}