2011-07-30 15:46:53 +02:00
|
|
|
{% extends "layout.html" %}
|
2011-08-21 21:16:32 +02:00
|
|
|
|
|
|
|
{% block sidebar %}
|
|
|
|
<ol>
|
2011-10-15 01:19:19 +02:00
|
|
|
<li>{{ _("Create the project") }}</li>
|
|
|
|
<li><strong>{{ _("Invite people") }}</strong></li>
|
|
|
|
<li><a href="{{ url_for(".list_bills") }}">{{ _("Use it!") }}</a></li>
|
2011-08-21 21:16:32 +02:00
|
|
|
</ol>
|
|
|
|
{% endblock %}
|
2011-07-30 15:46:53 +02:00
|
|
|
{% block content %}
|
2011-10-15 01:19:19 +02:00
|
|
|
<h2>{{ _("Invite people to join this project") }}</h2>
|
2013-10-13 21:45:49 +02:00
|
|
|
<p>{{ _("Specify a (comma separated) list of email adresses you want to notify about the
|
2011-10-15 01:19:19 +02:00
|
|
|
creation of this budget management project and we will send them an email for you.") }}</p>
|
|
|
|
<p>{{ _("If you prefer, you can") }} <a href="{{ url_for(".list_bills") }}">{{ _("skip this step") }}</a> {{ _("and notify them yourself") }}</p>
|
2011-07-30 15:46:53 +02:00
|
|
|
|
|
|
|
{% include "display_errors.html" %}
|
2012-04-05 15:40:09 +02:00
|
|
|
<form class="invites form-horizontal" method="post" accept-charset="utf-8">
|
2011-08-21 21:16:32 +02:00
|
|
|
{{ forms.invites(form) }}
|
2011-07-30 15:46:53 +02:00
|
|
|
</form>
|
|
|
|
{% endblock %}
|