small visual fixes, headline size and remove a stray </h4> and remove the text-container class from the speaker description markdown

This commit is contained in:
Thomas Steen Rasmussen 2018-07-17 23:35:10 +02:00
parent 00c053829e
commit a6b0332c9f
2 changed files with 4 additions and 5 deletions

View file

@ -22,7 +22,7 @@
<hr> <hr>
<h3>URLs for {{ event.title }}</h3> <h4>URLs for {{ event.title }}</h4>
{% if event.urls.exists %} {% if event.urls.exists %}
{% for url in event.urls.all %} {% for url in event.urls.all %}
<p><i class="{{ url.urltype.icon }}"></i> <b>{{ url.urltype }}</b>: <a href="{{ url.url }}" target="_blank" data-toggle="tooltip" title="{{ url.urltype }}">{{ url.url }}</a></p> <p><i class="{{ url.urltype.icon }}"></i> <b>{{ url.urltype }}</b>: <a href="{{ url.url }}" target="_blank" data-toggle="tooltip" title="{{ url.urltype }}">{{ url.url }}</a></p>

View file

@ -6,14 +6,14 @@
<h3>{{ speaker.name }}</h3> <h3>{{ speaker.name }}</h3>
<div class="row"> <div class="row">
<div class="col-md-12 text-container"> <div class="col-md-12">
{{ speaker.biography|untrustedcommonmark }} {{ speaker.biography|untrustedcommonmark }}
</div> </div>
</div> </div>
<hr /> <hr />
<h3>URLs for {{ speaker.name }}</h3> <h4>URLs for {{ speaker.name }}</h4>
{% if speaker.urls.exists %} {% if speaker.urls.exists %}
{% for url in speaker.urls.all %} {% for url in speaker.urls.all %}
<p><i class="{{ url.urltype.icon }}"></i> <b>{{ url.urltype }}</b>: <a href="{{ url.url }}" target="_blank" data-toggle="tooltip" title="{{ url.urltype }}">{{ url.url }}</a></p> <p><i class="{{ url.urltype.icon }}"></i> <b>{{ url.urltype }}</b>: <a href="{{ url.url }}" target="_blank" data-toggle="tooltip" title="{{ url.urltype }}">{{ url.url }}</a></p>
@ -34,7 +34,7 @@
</h3> </h3>
{{ event.abstract|untrustedcommonmark }} {{ event.abstract|untrustedcommonmark }}
<h4>Instances</h4> <h4>Scheduled Instances of "{{ event.title }}"</h4>
<ul class="list-group"> <ul class="list-group">
{% for ei in event.instances.all %} {% for ei in event.instances.all %}
<li class="list-group-item">{{ ei.when.lower|date:"l M. d H:i" }} - {{ ei.when.upper|date:"H:i" }}</li> <li class="list-group-item">{{ ei.when.lower|date:"l M. d H:i" }} - {{ ei.when.upper|date:"H:i" }}</li>
@ -42,7 +42,6 @@
No instances scheduled yet No instances scheduled yet
{% endfor %} {% endfor %}
</ul> </ul>
</h4>
<hr> <hr>
{% empty %} {% empty %}
No events registered for this speaker yet No events registered for this speaker yet