{# Renders a web page filled with content type choices. These include: * Markup items ( MoinMoin, Creole, Markdown, ...) * Other text (plain, diff, ...) * Images (SVG, PNG, ...) * etc Displays links to existing items with similar names. #} {% extends theme("layout.html") %} {% block content %}

{{ _("Create new item named '{name}'").format(name=item_name) }}

{{ _("Please select the contenttype of the new {itemtype} item.").format(itemtype=itemtype) }}

{% for group in group_names %} {% if groups[group]|length > 0 %} {% endif %} {% endfor %}
{{ group }}
|  {% for e in groups[group] %} {{ e.display_name }}  |  {% endfor %}
{% if similar_names %}

{{ _("Before creating a new item, review these existing items with similar names:") }}

    {% for name in similar_names %}
  1. {{ name }}
  2. {% endfor %}
{% endif %} {% endblock %}