mirror of
https://github.com/djohnlewis/stackdump
synced 2025-12-06 07:53:28 +00:00
27 lines
851 B
HTML
27 lines
851 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %}
|
|
Stackdump // Import data instructions
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
<div class="row nodata">
|
|
<div class="span16">
|
|
<h1>Importing data into Stackdump</h1>
|
|
<p>
|
|
Use the procedure below to import new sites into this Stackdump
|
|
instance, or to upgrade the content to a later version.
|
|
</p>
|
|
<p>
|
|
If you are upgrading, just follow the steps below. There are no
|
|
special steps to perform for upgrades; the process below will
|
|
automatically remove the existing site and import the new
|
|
version.
|
|
</p>
|
|
|
|
{% include 'includes/import_data.html.inc' %}
|
|
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|