{% extends "two_column_body.html" %} {% block title %}{% trans %}Import StackExchange data{% endtrans %}{% endblock %} {% block content %}

{% trans %}Import StackExchange data{% endtrans %}

{% if need_configuration %}

Note: to import stackexchange data, first add 'askbot.importers.stackexchange', to the INSTALLED_APPS setting in your settings.py file, then run python manage.py syncdb, and restart the application. After that, pleale return to here and try again.

{% else %}

{% trans %}Warning: if your database is not empty, please back it up before attempting this operation.{% endtrans %}

{% trans %}Upload your stackexchange dump .zip file, then wait until the data import completes. This process may take several minutes. Please note that feedback will be printed in plain text. {% endtrans %}

{% csrf_token %} {{dump_upload_form.as_table()}}

{% trans %}In the case you experience any difficulties in using this import tool, please try importing your data via command line: python manage.py load_stackexchange path/to/your-data.zip{% endtrans %}

{% endif %} {% endblock %}