Files @ 274f8ac966cb
Branch filter:

Location: symposion_app/pinaxcon/templates/content_page.html

Jamie Lennox
Add the T&C and COC to the accept box

Link to the T&C and Code of conducts so people know what they are
accepting. Create this as a static link because i don't know how django
would accept this being something dynamic on the model.

This annoyingly creates a migration, but it's not a real change and
easier to accept it now than fight django forever.
{% extends "site_base.html" %}
{% load staticfiles %}

{% load pyconau2017_tags %}


{% load i18n %}

{% block body_class %}template-content-page{% endblock %}

{% block head_title %}{% endblock %}

{% block body %}
  {% block content_base %}
    <div class="l-content-page">
      <div class="l-content-page--richtext">
        {% block content %}
        {% endblock %}
      </div>
    </div>
  {% endblock %}
{% endblock %}

{% block extra_script %}
  <script src="{% static 'js/site-92ae8d0d6c.js' %}" type="text/javascript"></script>
{% endblock %}