mirror of
https://github.com/spiral-project/ihatemoney.git
synced 2025-04-29 09:52:36 +02:00
parent
8531ea5b19
commit
604f4696d8
1 changed files with 38 additions and 22 deletions
|
@ -3,28 +3,44 @@
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<h1>{{ _("Invite people to join this project") }}</h1>
|
<h1>{{ _("Invite people to join this project") }}</h1>
|
||||||
|
|
||||||
|
<table class="table">
|
||||||
|
<tbody>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
<h3>{{ _('Share Identifier & code') }}</h3>
|
<h3>{{ _('Share Identifier & code') }}</h3>
|
||||||
<p>
|
</td>
|
||||||
|
<td>
|
||||||
{{ _("You can share the project identifier and the private code by any communication means.") }}
|
{{ _("You can share the project identifier and the private code by any communication means.") }}
|
||||||
<br />
|
<br />
|
||||||
<strong>{{ _('Identifier:') }}</strong> <a href="{{ url_for("main.list_bills", project_id=g.project.id) }}">{{ g.project.id }}</a>
|
<strong>{{ _('Identifier:') }}</strong> <a href="{{ url_for("main.list_bills", project_id=g.project.id) }}">{{ g.project.id }}</a>
|
||||||
</p>
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
<h3>{{ _('Share the Link') }}</h3>
|
<h3>{{ _('Share the Link') }}</h3>
|
||||||
<p>{{ _("You can directly share the following link via your prefered medium") }}</br>
|
</td>
|
||||||
|
<td>
|
||||||
|
{{ _("You can directly share the following link via your prefered medium") }}</br>
|
||||||
<a href="{{ url_for(".authenticate", _external=True, token=g.project.generate_token()) }}">
|
<a href="{{ url_for(".authenticate", _external=True, token=g.project.generate_token()) }}">
|
||||||
{{ url_for(".authenticate", _external=True, token=g.project.generate_token()) }}
|
{{ url_for(".authenticate", _external=True, token=g.project.generate_token()) }}
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>
|
||||||
<h3>{{ _('Send via Emails') }}</h3>
|
<h3>{{ _('Send via Emails') }}</h3>
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
<p>{{ _("Specify a (comma separated) list of email adresses you want to notify about the
|
<p>{{ _("Specify a (comma separated) list of email adresses you want to notify about the
|
||||||
creation of this budget management project and we will send them an email for you.") }}</p>
|
creation of this budget management project and we will send them an email for you.") }}</p>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
{% include "display_errors.html" %}
|
{% include "display_errors.html" %}
|
||||||
<form class="invites form-horizontal" method="post" accept-charset="utf-8">
|
<form class="invites form-horizontal" method="post" accept-charset="utf-8">
|
||||||
{{ forms.invites(form) }}
|
{{ forms.invites(form) }}
|
||||||
</form>
|
</form>
|
||||||
|
</td>
|
||||||
|
</tr>
|
||||||
|
</tbody>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
|
|
Loading…
Reference in a new issue