12 lines
308 B
HTML
Raw Permalink Normal View History

2018-06-29 08:03:49 +02:00
{% extends 'base.html' %}
{% block content %}
{% trans username=current_user.username -%}
Welcome to Calendar.social, {{username}}!
{%- endtrans %}
2018-06-25 09:01:13 +02:00
{% include 'month-view.html' %}
2018-06-30 06:44:45 +02:00
2018-07-13 10:19:37 +02:00
<a href="{{ url_for('new_event') }}" class="ui primary button">{% trans %}Add event{% endtrans %}</a>
2018-06-29 08:03:49 +02:00
{% endblock content %}