{% extends "admin/layout.html" %} {% block title %}{{ _("Import") }}{% endblock %} {% block contents %}

{{ _("Import") }}

{% trans %} If you have posts or comments in another system, Zine can import those into this blog. The data imported doesn't directly end up in the blog but a queue so that you can pick which data you want to import. To get started, choose a system to import from below: {% endtrans %}

{%- if queue %}

{% trans %} The following list lists all the imports that are not yet in the database or deleted. Click on one of the links to inspect the imported data and select what you want to have in the database. {% endtrans %}

{%- for item in queue %} {%- endfor %}
{{ _('Date') }} {{ _('Title') }} {{ _('Importer Used') }}
{{ item.dump_date|datetimeformat|e }} {{ item.title|e }} {{ item.importer }}
{%- endif %} {% endblock %}