Changeset - 1ba1a97c4555
[Not reviewed]
2 4 2
Sachi King - 7 years ago 2017-04-16 06:30:45
nakato@nakato.io
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.
6 files changed with 4 insertions and 4 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/_right_floating_image.html
Show inline comments
 
file renamed from pinaxcon/templates/lca2017/_right_floating_image.html to pinaxcon/templates/_right_floating_image.html
pinaxcon/templates/content_page.html
Show inline comments
 
file renamed from pinaxcon/templates/lca2017/content_page.html to pinaxcon/templates/content_page.html
pinaxcon/templates/registrasion/base.html
Show inline comments
 
{% extends "lca2017/content_page.html" %}
 
{% extends "content_page.html" %}
 
{% load staticfiles %}
pinaxcon/templates/symposion/schedule/presentation_detail.html
Show inline comments
...
 
@@ -46,7 +46,7 @@
 
  <h2>Presented by</h2>
 
  {% for speaker in presentation.speakers %}
 
    {% 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>
 

	
pinaxcon/templates/symposion/schedule/public_base.html
Show inline comments
 
{% extends "lca2017/content_page.html" %}
 
{% extends "content_page.html" %}
 

	
 
{% load staticfiles %}
 

	
pinaxcon/templates/utility_page.html
Show inline comments
 
{% extends "lca2017/content_page.html" %}
 
{% extends "content_page.html" %}
 
{% load staticfiles %}
 

	
 
{% comment %}
0 comments (0 inline, 0 general)