Starting to mod pages for other content (e.g. proposals, calendar)
This commit is contained in:
parent
247edef849
commit
6fa996f183
4 changed files with 11 additions and 15 deletions
|
@ -266,6 +266,11 @@ LOGGING = {
|
|||
'level': 'DEBUG',
|
||||
'propagate': True,
|
||||
},
|
||||
'symposion.request': {
|
||||
'handlers': ['mail_admins'],
|
||||
'level': 'DEBUG',
|
||||
'propagate': True,
|
||||
},
|
||||
'apps': { # I keep all my of apps under 'apps' folder, but you can also add them one by one, and this depends on how your virtualenv/paths are set
|
||||
'handlers': ['log_file'],
|
||||
'level': 'DEBUG',
|
||||
|
@ -274,7 +279,7 @@ LOGGING = {
|
|||
},
|
||||
# you can also shortcut 'loggers' and just configure logging for EVERYTHING at once
|
||||
'root': {
|
||||
'handlers': ['console', 'mail_admins'],
|
||||
'handlers': ['console', 'log_file'], #'mail_admins'],
|
||||
'level': 'DEBUG'
|
||||
},
|
||||
}
|
||||
|
|
|
@ -17,17 +17,6 @@
|
|||
{% block heading_panel %}
|
||||
<!-- div style="background-image: url('{% block header_background_image %}{% endblock %}');" class="panel--bg"></div -->
|
||||
|
||||
<div class="panel--content">
|
||||
{% comment %}
|
||||
<div class="panel--2-3">
|
||||
{% block header_title %}{% endblock %}
|
||||
<p class="lede">{% block header_paragraph %}{% endblock %}</p>
|
||||
</div>
|
||||
{% block header_inset_image_base %}
|
||||
{% endblock %}
|
||||
{% comment %}
|
||||
</div>
|
||||
|
||||
|
||||
{% block topbar_base %}
|
||||
{% endblock %}
|
||||
|
|
|
@ -14,7 +14,7 @@
|
|||
{% endblock %}
|
||||
{% endblock %}
|
||||
{% block scripts %}
|
||||
<script src="{% static 'lca2017/js/app.js' %}"></script>
|
||||
<script src="{% static 'pyconau2017/js/app.js' %}"></script>
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/jquery/3.0.0/jquery.min.js"></script>
|
||||
{% include "_scripts.html" %}
|
||||
<script src="//cdnjs.cloudflare.com/ajax/libs/ace/1.2.0/ace.js"></script>
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
{% extends "lca2017/content_page.html" %}
|
||||
{% extends "pyconau2017/content_page.html" %}
|
||||
|
||||
{% load staticfiles %}
|
||||
|
||||
{% block header_background_image %}{% static "lca2017/images/hobart_bg_optimised.jpg" %}{% endblock %}
|
||||
{% comment %}
|
||||
{% block header_background_image %}{% static "pyconau2017/images/hobart_bg_optimised.jpg" %}{% endblock %}
|
||||
{% endcomment %}
|
Loading…
Reference in a new issue