Template source: superposition_workflow_upload_file_form.html

{% block upload_file_form %}
<div class='col-md-4 panel panel-primary'>
    <div class="panel-body">
        <div class='selection-heading'>
            <span class='selection-heading-text'>{{ header }}</span>
        </div>
        <div style="width:370px;height:200px;">
            <br />
            <form id="{{form_id}}" action="{{ url }}" method="post" enctype="multipart/form-data"> {% csrf_token %}
                {{ form_code }}
            </form>
        </div>
        <div class="text-center">
            <a class="btn btn-primary btn-mini " href="/structure#keepselection">Select from structure browser</a>
        </div>
    </div>
</div>

{% endblock %}