<table class="table">
<tr>
<th class="w-50">Umístění kurzu:</th>
<td>
{{ course.placeType }}
{% if(course.place is not empty) %}
:<br />
{{ course.place.address }}
{% else %}
{% if(course.city) %}
<br />
{{ course.city.name }}, {{ course.city.district }}
{% endif %}
{% endif %}
{%- if(course.placeDescription is not empty) %}
<br />{{ course.placeDescription }}
{% endif -%}
</td>
</tr>
{% if(course.dayInWeeks|length >0) %}
<tr>
<th class="w-50">Dny vyuky:</th>
<td>
{% for day in course.dayInWeeks %}
{{ day.name }}
{% endfor %}
</td>
</tr>
{% endif %}
{% if(course.progressLevel is not empty) %}
<tr>
<th class="w-50">Úroveň pokročilosti:</th>
<td>{{ course.progressLevel }}</td>
</tr>
{% endif %}
{% if(course.languageLevelInput is not empty) %}
<tr>
<th class="w-50">Vstupní jazyková úroveň:</th>
<td>{{ course.languageLevelInput }}</td>
</tr>
{% endif %}
{% if(course.languageLevelOutput is not empty) %}
<tr>
<th class="w-50">Výstupní jazyková úroveň:</th>
<td>{{ course.languageLevelOutput }}</td>
</tr>
{% endif %}
<tr>
<th class="w-50">Frekvence vyuky:</th>
<td>
{% if(course.frequencyText is not empty) %}
{{ course.frequencyText }}x
{% endif %}
{{ course.frequency }}
</td>
</tr>
<tr>
<th class="w-50">Čas vyuky:</th>
<td>{{ course.lessonStart|date('H:i') }} - {{ course.lessonEnd|date('H:i') }}</td>
</tr>
<tr>
<th class="w-50">Příprava na certifikovanou zkoušku:</th>
<td>{% if(course.isPreparationForCertification) %}Ano{% else %}Ne{% endif %}</td>
</tr>
<tr>
<th class="w-50">Kurz jen pro straší 18 let:</th>
<td>{% if(course.onlyForAdults) %}Ano{% else %}Ne{% endif %}</td>
</tr>
<tr>
<th class="w-50">Obsah kurzu je možné upravit na míru:</th>
<td>{% if(course.canCustomize) %}Ano{% else %}Ne{% endif %}</td>
</tr>
<tr>
<th class="w-50">Kurz vede rodilý mluvčí:</th>
<td>{% if(course.isNativeSpeaker) %}Ano{% else %}Ne{% endif %}</td>
</tr>
{% if(course.certificationPrice is not empty) %}
<tr>
<th class="w-50">Cena certifikace:</th>
<td>{{ course.certificationPrice }}</td>
</tr>
{% endif %}
{% if(course.certificate is not empty) %}
<tr>
<th class="w-50">Certifikace:</th>
<td>
{{ course.certificate.name }}
</td>
</tr>
{% endif %}
<tr>
<th class="w-50">Certifikace součást kurzu</th>
<td>{% if(course.isWithCertificate) %}Ano{% else %}Ne{% endif %}</td>
</tr>
{% if(course.requirements is not empty) %}
<tr>
<th class="w-50">Další požadavky:</th>
<td>{{ course.requirements }}</td>
</tr>
{% endif %}
<tr>
<th class="w-50">Potvrzení o účasti v kurzu</th>
<td>{% if(course.isConfirmationOfParticipation) %}Ano{% else %}Ne{% endif %}</td>
</tr>
{% if(course.url is not empty) %}
<tr>
<th class="w-50">Odkaz</th>
<td><a href="{{ course.url }}" class="btn btn-primary">Přejít na web</a></td>
</tr>
{% endif %}
</table>