Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion _includes/workshops/card.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,15 @@
<div class="well workshop-well" data-length="{{ workshop.time }}" data-location="{{ location.id }}">
<div class="row">
<div class="col-12">
<h2 class="h4"><a href="{{ workshop.url }}">{{ workshop.title }}</a></h2>
<h2 class="h4">
{% if workshop.full == "canceled" %}
<s>
{% endif %}
<a href="{{ workshop.url }}">{{ workshop.title }}</a>
{% if workshop.full == "canceled" %}
</s>
{% endif %}
</h2>
{% if workshop.full == true %}
<p class="alert alert-warning">This workshop is full.</p>
{% elsif workshop.full == "canceled" %}
Expand Down