You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.1 KiB
43 lines
1.1 KiB
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>OriginDex - Pokémon Tracker</title>
|
|
<style>
|
|
table {
|
|
border-collapse: collapse;
|
|
width: 100%;
|
|
}
|
|
th, td {
|
|
border: 1px solid black;
|
|
padding: 8px;
|
|
text-align: left;
|
|
}
|
|
th {
|
|
background-color: #f2f2f2;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>OriginDex - Pokémon Tracker</h1>
|
|
<table>
|
|
<thead>
|
|
<tr>
|
|
<th>Pokémon</th>
|
|
<th>Earliest Game</th>
|
|
<th>Caught</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for pokemon in pokemon_list %}
|
|
<tr>
|
|
<td>{{ pokemon.Pokemon }}</td>
|
|
<td>{{ earliest_games.get(pokemon.Pokemon, 'Unknown') }}</td>
|
|
<td><input type="checkbox" name="caught" value="{{ pokemon.Pokemon }}"></td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
</body>
|
|
</html>
|