Skip to content

Commit

Permalink
Update proposal base.html for first time speaker
Browse files Browse the repository at this point in the history
  • Loading branch information
abhishekmishragithub committed Jul 31, 2020
1 parent aeefde9 commit 2a25ef9
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions junction/templates/proposals/detail/base.html
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ <h1 class="proposal-title">
<i class="fa fa-calendar"></i> <b> <time datetime="{{ proposal.created_at|date:'c' }}" title="Created on {{ proposal.created_at|date:'d M Y, H:i' }}">{{ proposal.created_at|date:"d M, Y" }}</time></b>
</small>
</p>

`
{% if is_author %}
<div class="btn-group" role="group">
<a href="{{ proposal.get_update_url }}"
Expand All @@ -79,6 +79,10 @@ <h1 class="proposal-title">
</div>
{% endif %}

{% if proposal.is_first_time_speaker %}
<span class="label label-primary">First Time Speaker</span>
{% endif %}

{% comment %}
{% if is_reviewer %}
<a class="tag label label-proposal-type" href="{{ proposal.get_review_url }}">Review proposal</a>
Expand Down Expand Up @@ -180,12 +184,7 @@ <h4 class='heading'><b>Speaker Links:</b></h4>
</div>
{% endif %}

{% if proposal.is_first_time_speaker %}
<div class="proposal-writeup--section">
<h4 class='heading'><b>First Time Speaker:</b></h4>
<p> Yes</p>
</div>
{% endif %}


{% if is_section_reviewer or user.is_authenticated and user.is_superuser %}
<div class="proposal-writeup--section">
Expand Down

0 comments on commit 2a25ef9

Please sign in to comment.