Update wording for sessions

This commit is contained in:
Joel Addison 2022-12-09 00:20:40 +10:00
parent 1a41a0bee2
commit f5eabe0aa3
4 changed files with 8 additions and 9 deletions

View file

@ -1,6 +1,6 @@
<h3>New Proposal</h3> <h3>New Proposal</h3>
<p>Click one of the following links to create a speaking or miniconf proposal.</p> <p>Click one of the following links to create a session proposal.</p>
<p>Once submitted you will be able to see the status of your proposals, as well manage the submission and co-speakers from this page</p> <p>Once submitted you will be able to see the status of your proposals, as well manage the submission and co-speakers from this page.</p>
<div> <div>
{% for kind in proposal_kinds %} {% for kind in proposal_kinds %}
<a class="btn btn-outline-primary mb-2" href="{% url "proposal_submit_kind" kind.slug %}">{{ kind }}</a> <a class="btn btn-outline-primary mb-2" href="{% url "proposal_submit_kind" kind.slug %}">{{ kind }}</a>

View file

@ -1,14 +1,13 @@
<h3>Speaker Profile</h3> <h3>Speaker Profile</h3>
{% if not user.speaker_profile %} {% if not user.speaker_profile %}
<p> <p>
To create a speaking or miniconf proposal you must first create a speaker To create a session proposal you must first create a speaker profile.
profile.
</p> </p>
{% endif %} {% endif %}
<p> <p>
Your speaker profile is independent of your attendee profile and the Your speaker profile is independent of your attendee profile.
details you provide here will be used during selection and to populate The details you provide here will be used during the session selection process,
your speaker bio on the conference website. and to populate your speaker bio on the conference website.
</p> </p>
<div> <div>
{% if not user.speaker_profile %} {% if not user.speaker_profile %}

View file

@ -3,7 +3,7 @@
<div class="row"> <div class="row">
<div class="col-12"> <div class="col-12">
<h2 class="mb-3">{% trans "Speaking and Miniconfs" %}</h2> <h2 class="mb-3">{% trans "Speaking and Sessions" %}</h2>
</div> </div>
</div> </div>

View file

@ -12,7 +12,7 @@
{% with timetable|day_has_tracks:timetable.day as has_tracks %} {% with timetable|day_has_tracks:timetable.day as has_tracks %}
{% if has_tracks %} {% if has_tracks %}
<tr> <tr>
<th scope="row" class="time"><em>Miniconf</em></th> <th scope="row" class="time"><em>Track</em></th>
{% for room in timetable.rooms %} {% for room in timetable.rooms %}
{% with room|trackname:timetable.day as track_name %} {% with room|trackname:timetable.day as track_name %}
<th scope="column" class="track-name">{% if track_name %}<p>{{ track_name }}</p>{% endif %}</th> <th scope="column" class="track-name">{% if track_name %}<p>{{ track_name }}</p>{% endif %}</th>