Changeset - f5eabe0aa35a
[Not reviewed]
0 4 0
Joel Addison - 16 months ago 2022-12-08 14:20:40
joel@addison.net.au
Update wording for sessions
4 files changed with 8 insertions and 9 deletions:
0 comments (0 inline, 0 general)
pinaxcon/templates/symposion/dashboard/_new_proposal.html
Show inline comments
 
<h3>New Proposal</h3>
 
<p>Click one of the following links to create a speaking or miniconf 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>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>
 
<div>
 
  {% for kind in proposal_kinds %}
 
  <a class="btn btn-outline-primary mb-2" href="{% url "proposal_submit_kind" kind.slug %}">{{ kind }}</a>
pinaxcon/templates/symposion/dashboard/_profile.html
Show inline comments
 
<h3>Speaker Profile</h3>
 
{% if not user.speaker_profile %}
 
<p>
 
  To create a speaking or miniconf proposal you must first create a speaker
 
  profile.
 
  To create a session proposal you must first create a speaker profile.
 
</p>
 
{% endif %}
 
<p>
 
  Your speaker profile is independent of your attendee profile and the
 
  details you provide here will be used during selection and to populate
 
  your speaker bio on the conference website.
 
  Your speaker profile is independent of your attendee profile.
 
  The details you provide here will be used during the session selection process,
 
  and to populate your speaker bio on the conference website.
 
</p>
 
<div>
 
  {% if not user.speaker_profile %}
pinaxcon/templates/symposion/dashboard/speaking.html
Show inline comments
...
 
@@ -3,7 +3,7 @@
 

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

	
pinaxcon/templates/symposion/schedule/_grid.html
Show inline comments
...
 
@@ -12,7 +12,7 @@
 
    {% with timetable|day_has_tracks:timetable.day as has_tracks %}
 
    {% if has_tracks %}
 
    <tr>
 
      <th scope="row" class="time"><em>Miniconf</em></th>
 
      <th scope="row" class="time"><em>Track</em></th>
 
      {% for room in timetable.rooms %}
 
      {% with room|trackname:timetable.day as track_name %}
 
      <th scope="column" class="track-name">{% if track_name %}<p>{{ track_name }}</p>{% endif %}</th>
0 comments (0 inline, 0 general)