2018-06-29 06:03:49 +00:00
|
|
|
{% extends 'base.html' %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
{{ _('Welcome to Calendar.social, %(username)s!', username=current_user.username) }}
|
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 %}
|