Fix microdata error on /contribute/events/ (#7382)

* Fixing microdata error on events
This commit is contained in:
Raphael Raue 2019-07-09 01:47:40 +02:00 коммит произвёл Amy Churchwell
Родитель 8f66b07297
Коммит f56fb567a6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -27,7 +27,7 @@
<tr itemscope itemtype="http://schema.org/Event">
<td class="event-date"><time itemprop="startDate endDate" datetime="{{ event.start_time.isoformat() }}">{{ event.start_time|l10n_format_date }}</time></td>
<td itemprop="name" class="event-name" scope="row">{% if event.url %}<a itemprop="url" href="{{ event.url }}">{% endif %}{{ event.title|safe }}{% if event.url %}</a>{% endif %}</td>
<td itemprop="location">{{ event.location|safe }}</td>
<td itemprop="location" itemscope itemtype="https://schema.org/Place"><address itemprop="https://schema.org/address">{{ event.location|safe }}</address></td>
</tr>
{% endfor %}
</tbody>