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