{% extends "layout.html" %} {% block content %}
{% if 'manager'|is_authorized %}
{{ 'admin/import'|manual }} {{ _('edit')|button(url_for('import_project_update', id_=project.id)) }} {{ _('delete')|button(url_for('import_project_delete', id_=project.id), onclick="return confirm('" + _('delete %(name)s?', name=project.name)|replace("'", "")|uc_first + "')") }}

{{ _('new import')|uc_first }}:

{{ _('source')|button(url_for('import_data', project_id=project.id, class_='source')) }} {% for class_ in g.view_class_mapping.event + g.view_class_mapping.actor %} {{ class_|button(url_for('import_data', project_id=project.id, class_=class_)) }} {% endfor %} {{ _('place')|button(url_for('import_data', project_id=project.id, class_='place')) }}
{% endif %} {{ project|description }}
{% if table.rows %}
{{ table.display() }}
{% endif %}
{% endblock %}