move templates out of vendor specific locations

Lets not kid ourselves.  The whole apps templates are client specific.
Lets just remove that and not think it isn't.
This commit is contained in:
Sachi King 2017-04-12 19:23:43 +10:00
parent 0aa48837cf
commit 1ba1a97c45
6 changed files with 4 additions and 4 deletions

View file

@ -1,2 +1,2 @@
{% extends "lca2017/content_page.html" %} {% extends "content_page.html" %}
{% load staticfiles %} {% load staticfiles %}

View file

@ -46,7 +46,7 @@
<h2>Presented by</h2> <h2>Presented by</h2>
{% for speaker in presentation.speakers %} {% for speaker in presentation.speakers %}
{% speaker_photo speaker 512 as speaker_photo_url %} {% speaker_photo speaker 512 as speaker_photo_url %}
{% include "lca2017/_right_floating_image.html" with image_url=speaker_photo_url %} {% include "_right_floating_image.html" with image_url=speaker_photo_url %}
<h3><a href="{% url "speaker_profile" speaker.pk %}">{{ speaker }}</a></h3> <h3><a href="{% url "speaker_profile" speaker.pk %}">{{ speaker }}</a></h3>

View file

@ -1,4 +1,4 @@
{% extends "lca2017/content_page.html" %} {% extends "content_page.html" %}
{% load staticfiles %} {% load staticfiles %}

View file

@ -1,4 +1,4 @@
{% extends "lca2017/content_page.html" %} {% extends "content_page.html" %}
{% load staticfiles %} {% load staticfiles %}
{% comment %} {% comment %}