{% extends "/base.html" %} {% set active_page = "projects" %} {% set active_project = project.short_name %} {% import "projects/_helpers.html" as helper %} {% block content %} {{ helper.render_project_local_nav(project, 'tasks', current_user)}}
{% from "_formhelpers.html" import render_field %} {{ helper.render_loading(loading_text) }}

{{project.name}}: {{_('Import tasks')}}

{% if form %}

{{_('From a CSV file')}}

{{ form.hidden_tag() }} {{_('Please provide a URL (i.e. DropBox, Box, Ubuntu One, etc. public link) to a CSV file with data for')}} {{ active_project }}.
{{_('For more information, please look at')}} {{_('the documentation')}}.
{{ render_field(form.csv_url, class_="form-control", placeholder=_('The URL of the CSV file')) }}
{% endif %}
{% endblock %}