This repository has been archived on 2025-10-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
RIS/App/Queries/templates/sklad_zapros.html
Anton Kamalov 19a5869d30 Initial commit
2024-10-21 22:42:14 +03:00

18 lines
418 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Hello World</title>
</head>
<body>
<h1>Hello World</h1>
<form action="" method="post">
<select name="categories" size="10" multiple>
{% for category in categories %}
<option value="{{ category }}">{{ category }}</option>
{% endfor %}
</select>
</form>
</body>
</html>