{% extends 'base.html' %} {% load i18n %} {% load static %} {% block extra_css %} {# Select2 CSS is loaded globally from vendor in base.html #} {% endblock %} {% block content %}

{% trans "Fetching page information..." %}

{% trans "This may take a few seconds" %}

{% if form.instance.pk %} {% trans "Edit Page" %} {% else %} {% trans "New Bookmark Page" %} {% endif %}

{% csrf_token %}
{% if form.url.errors %}

{{ form.url.errors.0 }}

{% endif %}
{% if form.title.errors %}

{{ form.title.errors.0 }}

{% endif %}
{% if form.summary.errors %}

{{ form.summary.errors.0 }}

{% endif %}
{% if form.content.errors %}

{{ form.content.errors.0 }}

{% endif %}

{% trans "Supports Markdown formatting" %}

{{ form.tags }}
{% if form.tags.errors %}

{{ form.tags.errors.0 }}

{% endif %}
{% if form.instance.pk %}

{% trans "Reset the page status to pending and trigger re-fetching of page information" %}

{% endif %}
{% trans "Cancel" %}
{% endblock %} {% block extra_js %} {# jQuery and Select2 are loaded globally from vendor in base.html #} {% endblock %}