{% extends 'base.html' %} {% load static %} {% block content %} {% block title %}skinregeneration.org | upload{% endblock %}

Welcome

Make sure you have a folder with the images inside the zip folder you're uploading

The name of the zipped folder should match the name of the folder inside

|-- folderYouUpload.zip
| `-- folderYouUpload

The "Zipped Genes" field at the bottom is for the zipped folder.

Check the hidden box if you want it to be hidden

The "download" field should be a link to the geodata page.

Upload zipped folder

{% csrf_token %}
{{form.name}}
{{form.manuscript}}
{{form.species}}
{{form.anatomicalPosition}}
{{form.selectedCells}}
{{form.dataType}}
{{form.analyzer}}
{{form.download}}
{{form.age}}
{{form.sex}}
{{form.principleInvestigator}}
{{form.description}}
{{form.hidden}}
{{form.multiImage}}
{{form.cellTypeImage}}
{% comment %} {{form.rawData}}
{% endcomment %} {{form.cellTypeImage2}}


{% if form.errors or form.non_field_errors %}
{% for field in form %} {{ field.errors }} {% endfor %} {{ form.non_field_errors }}
{% endif %}
{% endblock %}