19 lines
735 B
HTML
19 lines
735 B
HTML
{% extends "base.html" %}
|
|
|
|
{%block title_page%}
|
|
Velocity field database
|
|
{% endblock %}
|
|
|
|
{% block content %}
|
|
<form action="/cgi-bin/flows2.py" enctype="multipart/form-data" method="post">
|
|
<input type="text" name="galname"/><br/>
|
|
<input type="hidden" name="download" value="1"/>
|
|
<input type="radio" name="coords" value="Galactic"/>Galactic coordinates<br/>
|
|
<input type="radio" name="coords" value="SuperGalactic"/>Super galactic coordinates<br/>
|
|
<input type="radio" name="coords" value="Equatorial"/>Equatorial coordinates<br/>
|
|
<input type="hidden" name="MAX_FILE_SIZE" value="100000"/>
|
|
Filename: <input type="file" name="inpath"/><br/>
|
|
<input type="submit" value="Submit"/>
|
|
</form>
|
|
|
|
{% endblock %}
|