You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
109 lines
4.0 KiB
109 lines
4.0 KiB
{% extends "admin/base_site.html" %}
|
|
{% load i18n adminmedia %}
|
|
|
|
{% block breadcrumbs %}
|
|
{% if not is_popup %}
|
|
<div class="breadcrumbs">
|
|
<a href="../../../">{% trans "Home" %}</a> ›
|
|
<a href="../../">{{ app_label|capfirst|escape }}</a> ›
|
|
<a href="../">{{ opts.verbose_name_plural|capfirst }}</a> ›
|
|
{% trans 'Importation' %}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
|
|
{% block extrastyle %}{{ block.super }}<link rel="stylesheet" type="text/css" href="{% admin_media_prefix %}css/forms.css" />{% endblock %}
|
|
|
|
{% block content %}
|
|
<div id="content-main">
|
|
|
|
<form action="." method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<div>
|
|
<fieldset class="module aligned">
|
|
<h2>{% trans "Excel" %}</h2>
|
|
<div class="form-row source">
|
|
<div>
|
|
<label for="id_source" class="required">{% trans "Excel file (.xls)" %} :</label>
|
|
<input name="type" value="excel" type="hidden" />
|
|
<input name="source" id="id_source" type="file" class="vTextField" />
|
|
</div>
|
|
<p class="help">{% trans "Import contacts from a Excel file." %}<br />
|
|
{% trans "Columns are [email][last name][first name][tags]." %}<br />
|
|
{% trans "All columns are optionnal excepting the email." %}
|
|
</p>
|
|
</div>
|
|
</fieldset>
|
|
<div class="submit-row">
|
|
<input type="submit" class="default" value="{% trans "Import" %}" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<form action="." method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<div>
|
|
<fieldset class="module aligned">
|
|
<h2>{% trans "Text" %}</h2>
|
|
<div class="form-row source">
|
|
<div>
|
|
<label for="id_source" class="required">{% trans "Text file (.txt, .csv)" %} :</label>
|
|
<input name="type" value="text" type="hidden" />
|
|
<input name="source" id="id_source" type="file" class="vTextField" />
|
|
</div>
|
|
<p class="help">{% trans "Import contacts from a text file, or a CSV file." %}<br />
|
|
{% trans "Columns are [email][last name][first name][tags], splitted by a dot coma." %}<br />
|
|
{% trans "All columns are optionnal excepting the email." %}
|
|
</p>
|
|
</div>
|
|
</fieldset>
|
|
<div class="submit-row">
|
|
<input type="submit" class="default" value="{% trans "Import" %}" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<form action="." method="post" enctype="multipart/form-data">
|
|
{% csrf_token %}
|
|
<div>
|
|
<fieldset class="module aligned">
|
|
<h2>{% trans "VCard" %}</h2>
|
|
<div class="form-row source">
|
|
<div>
|
|
<label for="id_source" class="required">{% trans "VCard file (.cvf)" %} :</label>
|
|
<input name="type" value="vcard" type="hidden" />
|
|
<input name="source" id="id_source" type="file" class="vTextField" />
|
|
</div>
|
|
<p class="help">{% trans "Import contacts from your favorite mail client, by providing a VCard file." %}</p>
|
|
</div>
|
|
</fieldset>
|
|
<div class="submit-row">
|
|
<input type="submit" class="default" value="{% trans "Import" %}" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
<form action="." method="post">
|
|
{% csrf_token %}
|
|
<div>
|
|
<fieldset class="module aligned">
|
|
<h2>{% trans "Raw text" %}</h2>
|
|
<div class="form-row source">
|
|
<div>
|
|
<label for="id_source" class="required">{% trans "Raw text" %} :</label>
|
|
<input name="type" value="text" type="hidden" />
|
|
<textarea name="source" id="id_source" class="vLargeTextField" cols="40" rows="15" /></textarea>
|
|
</div>
|
|
<p class="help">{% trans "Columns are [email][last name][first name][tags], splitted by a dot coma." %}<br />
|
|
{% trans "All columns are optionnal excepting the email." %}
|
|
</p>
|
|
</div>
|
|
</fieldset>
|
|
<div class="submit-row">
|
|
<input type="submit" class="default" value="{% trans "Import" %}" />
|
|
</div>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
{% endblock %}
|
|
|