Tweaked the HTML that puts session links and calendar links on the session details page to put them on the same line.
- Legacy-Id: 18114
This commit is contained in:
parent
e0c5929e31
commit
7a30c14bbd
|
@ -1243,7 +1243,7 @@ class SessionDetailsTests(TestCase):
|
||||||
self.assertNotContains(r, 'deleted')
|
self.assertNotContains(r, 'deleted')
|
||||||
|
|
||||||
q = PyQuery(r.content)
|
q = PyQuery(r.content)
|
||||||
self.assertTrue(q('h2#session_%s div#session-buttons-%s' % (session.id, session.id)),
|
self.assertTrue(q('h2#session_%s span#session-buttons-%s' % (session.id, session.id)),
|
||||||
'Session detail page does not contain session tool buttons')
|
'Session detail page does not contain session tool buttons')
|
||||||
self.assertFalse(q('h2#session_%s div#session-buttons-%s span.fa-arrows-alt' % (session.id, session.id)),
|
self.assertFalse(q('h2#session_%s div#session-buttons-%s span.fa-arrows-alt' % (session.id, session.id)),
|
||||||
'The session detail page is incorrectly showing the "Show meeting materials" button')
|
'The session detail page is incorrectly showing the "Show meeting materials" button')
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
{% load textfilters %}
|
{% load textfilters %}
|
||||||
{% origin %}
|
{% origin %}
|
||||||
|
|
||||||
<div id="session-buttons-{{session.pk}}">
|
<span id="session-buttons-{{session.pk}}">
|
||||||
{% if session.agenda and show_agenda %}
|
{% if session.agenda and show_agenda %}
|
||||||
{% include "meeting/session_agenda_include.html" %}
|
{% include "meeting/session_agenda_include.html" %}
|
||||||
<!-- agenda pop-up button -->
|
<!-- agenda pop-up button -->
|
||||||
|
@ -101,4 +101,4 @@
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
{% endif %}
|
{% endif %}
|
||||||
</div>
|
</span>
|
Loading…
Reference in a new issue