{% extends "admin/change_form.html" %} {% load i18n static %} {% block extrahead %} {{ block.super }} {% endblock %} {% block object-tools %}
{{ block.super }} {% endblock %} {% block content %} {{ block.super }}

{% translate "Overview of existing values" %}

{% translate "Clicking on the value will insert it into the META field." %}

{% translate "Property List" %}

{% translate "List of existing properties." %}

    {% for item in meta_og_property %}
  • {{ item }}
  • {% endfor %}
{% translate "Content List" %}

{% translate "List of existing values." %}

    {% for item in meta_og_content %}
  • {{ item }}
  • {% endfor %}
{% translate "Dynamic content" %}

{% translate "The key in the list will be replaced with the value described in the label." %}

    {% for key, item in PAGE_META_OG_DYNAMIC_CONTENT.items %}
  • {{ key }} {{ item.1 }}
  • {% endfor %}
{% endblock %}