This repository has been archived on 2024-06-23. You can view files and clone it, but cannot push or open issues or pull requests.
mathdeptv2/工具v4/templates/result.html

20 lines
388 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>Result</title>
</head>
<body>
<h2>Selected Checkboxes:</h2>
<ul>
{% for checkbox in checkboxes %}
<li>{{ checkbox }}</li>
{% endfor %}
</ul>
<h2>Selected Radioboxes:</h2>
<ul>
{% for radiobox in radioboxes %}
<li>{{ radiobox }}</li>
{% endfor %}
</ul>
</body>
</html>