You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
930 B
HTML

2 years ago
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='css/global.css') }}" />
<title>Add new patch for {{instrument['name']}}</title>
</head>
<body>
<form method="POST" enctype="multipart/form-data">
<input type="text" name="name" placeholder="Name">
<textarea name="description" cols="30" rows="10" placeholder="description"></textarea>
<input type="date" name="date">
{% for param in instrument['params']%}
<input type="text" name="{{param}}" placeholder="{{param}}">
{% endfor %}
<input type="text" name="input" placeholder="Input">
<input type="text" name="output" placeholder="Output">
<input type="text" name="routing" placeholder="Routing">
<input type="submit" value="Add">
</form>
</body>
</html>