Skip to content

Commit

Permalink
symp type event certificate updates
Browse files Browse the repository at this point in the history
1) Remove name from upper right corner
2) If no image specified, leave blank (no empty image)
  • Loading branch information
jennyq committed Dec 4, 2023
1 parent dbe8fac commit c5f74e4
Showing 1 changed file with 11 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
height: 110px;
margin-top: 25px;
}
.certificate .row.heading img {
.certificate .row.heading img, .certificate .row.heading .img-blank {
margin-left: 40px;
margin-right: 40px;
}
Expand Down Expand Up @@ -226,13 +226,22 @@
</div>
<div class="row heading">
<div class="col-md-3">
<img src="{% image_url registrant.event.image %}" title="{{ registrant.event.title }}" alt="{{ registrant.event.title }}"/></div>
{% if registrant.event.image %}
<img src="{% image_url registrant.event.image %}" title="{{ registrant.event.title }}" alt="{{ registrant.event.title }}"/>
{% else %}
<span class="img-blank"></span>
{% endif %}
</div>
<div class="col-md-3 heading">
<hr>
{% trans "CERTIFICATE OF CONTINUING EDUCATION" %}
</div>
<div class="col-md-3 align-right">
{% if registrant.event.certificate_image %}
<img src="{{ registrant.event.certificate_image.url }}" title="{{ registrant.event.title }}" alt="{{ registrant.event.title }}"/>
{% else %}
<span class="img-blank"></span>
{% endif %}
</div>
</div>
<div class="row awarded">
Expand Down

0 comments on commit c5f74e4

Please sign in to comment.