<% include ../common-en_US/header.ejs %>
<!-- MAIN CONTENT GOES HERE -->

  <h1>Hi <%= dojoName %>,</h1>

  <p>This is a notification to let you know that a ticket for <b><%= event.name %></b> has been booked.</p>

  <h3>Order Summary</h3>
  <p> - Date: <%= applicationDate %></p>
  <p> - Session: <%= sessionName %></p>
  <table class="contentTable">
    <thead>
      <th>Name</th>
      <th>Type</th>
      <th>Quantity</th>
    </thead>
    <tbody>
      <% for(var i=0; i<tickets.length; i++) { %>
        <tr>
          <td><%= tickets[i].ticketName %></td>
          <td><%= tickets[i].ticketType %></td>
          <td><%= tickets[i].quantity %></td>
        </tr>
      <% } %>
    </tbody>
  </table>

  <p>Status: <%= status %></p>

  <h3>About this event</h3>
  <p> - Event date: <%= eventDate %></p>
  <p> - Event address: <%= event.address %></p>

  <a href="<%= applicationsLinkBase + '/' + dojoId + '/events/' + eventId + '/applications' %>">View Applications</a>

  <p>Best wishes,</br>
  The CoderDojo Foundation Team</p>

<% include ../common-en_US/footer.ejs %>
