{% extends "base.html" %} {% block title %} Restore Project or Channel {% endblock title%} {% block content %}
As New Project

WARNING!! These fields are prepopulated with the name of the project and description when the backup was taken. If you are restoring to the same machine, you need to pick a new project name. All other properties of the project will be inherited from the backed up project. {% csrf_token %} {{ pform.errors }}

{{ pform.subject.errors }}
{{ pform.project_name }}
{{ pform.subject.errors }}
{{ pform.project_description }}
{{ pform.subject.errors }}
{{ pform.public }}
{{ pform.subject.errors }}
{{ pform.host }}
Create a default token
Perform restore in background


{% if cform %}
As Channel in Existing Project

Notice: The project field shows compatible projects that (1) the user can access and (2) use the same dataset. If the project is not available, it failed one of these criteria. {% csrf_token %} {{ cform.errors }}

{{ cform.subject.errors }}
{{ cform.subject.errors }}
{{ cform.channel_name }}
{{ cform.subject.errors }}
{{ cform.channel_description }}
Perform restore in background

{% endif %} {% endblock %}