25 lines
588 B
HTML
25 lines
588 B
HTML
<html lang="fr">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<title>Boarding ticket</title>
|
|
<meta name="description" content="Boarding ticket">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
<section id="informations">
|
|
|
|
<h1>{{ ticket.first_name }} {{ ticket.last_name }}</h1>
|
|
<h1>{{ config.organisation }}</h1>
|
|
<h1>{{ ticket.reservation.event.name }}</h1>
|
|
<h1>{{ ticket.reservation.event.datetime }}</h1>
|
|
<h1>Siège : {{ ticket.seat }}</h1>
|
|
<h1>Numéro de billet : {{ ticket.numero_uuid }}</h1>
|
|
|
|
<div>{{ img_svg | safe }}</div>
|
|
<div>{{ bar_svg | safe }}</div>
|
|
|
|
</section>
|
|
</body>
|
|
</html>
|