Files @ 7d18387670ca
Branch filter:

Location: symposion_app/pinaxcon/templates/404.html

James Polley
If no boardingpass, make one

- Use the first template in the system
- If there's no template, use /tickets/review as it at least gives
- people an overview of what they've paid for and warns them of
missing categories
{% extends "site_base.html" %}
{% load staticfiles %}

{% load i18n %}

{% block body_class %}template-blogpage{% endblock %}

{% block head_title %}{{ page.title }}{% endblock %}

{% block body %}
  {% block content %}
    <div class="l-content-page">
      <div class="l-content-page--richtext ooops-hack">
        <h2>Ooops</h2>

        <p>The page you're looking for doesn't exist. Sorry!</p>
      </div>
    </div>
  {% endblock %}
{% endblock %}