more fun with schedule styling and buttons
This commit is contained in:
parent
b44e23a3d0
commit
ca2db5423a
|
@ -4,7 +4,7 @@
|
|||
Call for Speakers | {{ block.super }}
|
||||
{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
{% block schedule_content %}
|
||||
<h2>BornHack 2016: Call for Speakers</h2>
|
||||
|
||||
<p>BornHack 2016 is a 7 days outdoor technology tent camping festival that will take place from the 27th of August to the 3rd of September 2016 on the island of Bornholm in Denmark. It is first time that BornHack will take place and it is our goal to make BornHack a yearly recurring event with 100 to 350 participants.</p>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% extends 'schedule_base.html' %}
|
||||
|
||||
{% block content %}
|
||||
{% block schedule_content %}
|
||||
<p class="lead">
|
||||
An alphabetical list of all talks, workshops, keynotes and other events
|
||||
at BornHack 2016.
|
||||
|
@ -8,10 +8,10 @@
|
|||
|
||||
<div class="list-group">
|
||||
{% for event in event_list %}
|
||||
<small style="background-color: {{ event.event_type.color }}; border: 0; color: {% if event.event_type.light_text %}white{% else %}black{% endif %}; display: inline-block; padding: 5px;">
|
||||
{{ event.event_type.name }}
|
||||
</small>
|
||||
<a href="{% url 'schedule:event' slug=event.slug %}" class="list-group-item">
|
||||
<small style="background-color: {{ event.event_type.color }}; border: 0; color: {% if event.event_type.light_text %}white{% else %}black{% endif %}; display: inline-block; padding: 5px;">
|
||||
{{ event.event_type.name }}
|
||||
</small>
|
||||
{{ event.title }}
|
||||
</a>
|
||||
{% if event.speakers.exists %}
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
{% extends 'schedule_base.html' %}
|
||||
{% load commonmark %}
|
||||
|
||||
{% block content %}
|
||||
{% block schedule_content %}
|
||||
|
||||
<h3>{{ speaker.name }}</h3>
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{% extends 'schedule_base.html' %}
|
||||
|
||||
{% block content %}
|
||||
{% block schedule_content %}
|
||||
<p class="lead">
|
||||
An alphabetical list of all speakers, workshop hosts and other
|
||||
event anchors at BornHack 2016.
|
||||
|
|
Loading…
Reference in a new issue