Graphs/templates/type.html

32 lines
758 B
HTML
Raw Permalink Normal View History

2025-03-09 15:23:18 +01:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Ahoj</title>
</head>
<body>
<table>
<tr>
<th>-></th>
<th>Vrcholy</th>
<th>Arky</th>
<th>Binary</th>
<th>Antimagic</th>
<th>Super</th>
<th>Strict</th>
</tr>
{% for graph in graphs %}
<tr>
<td><a href="{% url "info" type=kwargs.type info=graph.id %}">o</a></td>
<td>{{ graph.get_properties.vertex }}</td>
<td>{{ graph.get_properties.arc }}</td>
<td>{{ graph.binary }}</td>
<td>{% if graph.antimagic %}{{ graph.antimagic }}{% else %}---{% endif %}</td>
<td>{% if graph.strong %}{{ graph.strong }}{% else %}---{% endif %}</td>
</tr>
{% endfor %}
</table>
</body>
</html>