blob: 17e10165438bcdce2f9a22359d6aa2bf799bd4a6 [file] [log] [blame]
{% extends "experimentpage.html" %}
{% block content %}
<h1>Please enter your product information:</h1>
<form method="POST" action="{% url 'exp_portal:new_product' %}">
<div class="form-group">
<label for="id_dataset">Challenge Problem</label>
<select class="form-control" name="product_dataset" id='id_product_dataset' value="{{ product.dataset.name }}" required>
{% for dataset in datasets %}
<option value="{{ dataset.name }}">{{ dataset.name }}</option>
{% endfor %}
</select>
</div>
<div class="form-group">
<label for="id_product_url">Product URL</label>
<input class="form-control" name="product_url" id="id_product_url" value="{{ product.url }}" size="60" required/>
</div>
<div class="form-group">
<label for="id_product_name">Product Name</label>
<input class="form-control" name="product_name" id='id_product_name' value="{{ product.name }}" size="60" required/>
</div>
<div class="form-group">
<label for="id_product_team">Team Name</label>
<input class="form-control" name="product_team" id="id_product_team" value="{{ product.team }}" size="60" required/>
</div>
<div class="form-group">
<label for="id_version">Version</label>
<input class="form-control" name="product_version" id="id_product_version" value="{{ product.version }}" required/>
</div>
<div class="form-group">
<label for="id_instructions_url">Instructions URL</label>
<input class="form-control" name="product_instructions" id="id_product_instructions" value="{{ product.instructions }}" size="60" required/>
</div>
<div class="checkbox">
<label>
<input type="checkbox" name="product_active" id="id_product_active" {% if product.is_active %}checked{% endif %}>Active
</label>
</div>
<input class="btn btn-primary" type="submit" value="Submit"/>
{% csrf_token %}
</form>
{% endblock %}