14 lines
371 B
HTML
14 lines
371 B
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>Deck - {{ deck.name }}</title>
|
|
</head>
|
|
<body>
|
|
<h1>Hello World!</h1>
|
|
<h2>This is the page for deck {{ deck.name }} with id {{ deck.id }}, owned by {{ owner.name }}</h2>
|
|
{% if description %}
|
|
<p>The description of the deck is: {{ description }}</p>
|
|
{% endif %}
|
|
</body>
|
|
</html> |