membership_invitation-body-text.jinja 877 B

123456789101112131415161718192021222324
  1. {% if membership.invited_by %}
  2. {% set sender_full_name=membership.invited_by.get_full_name() %}
  3. {% else %}
  4. {% set sender_full_name=_("someone") %}
  5. {% endif %}
  6. {% trans full_name=sender_full_name, project=membership.project %}
  7. You, or someone you know, has invited you to Taiga
  8. Hi! {{ full_name }} has sent you an invitation to join a project called {{ project }} which is being managed on Taiga, a Free, open Source Agile Project Management Tool.
  9. {% endtrans %}
  10. {% if membership.invitation_extra_text %}
  11. {% trans extra=membership.invitation_extra_text %}
  12. And now a few words from the jolly good fellow or sistren who thought so kindly as to invite you:
  13. {{ extra }}
  14. {% endtrans %}
  15. {% endif %}
  16. {{ _("Accept your invitation to Taiga following this link:") }}
  17. {{ resolve_front_url("invitation", membership.token) }}
  18. {% trans %}
  19. ---
  20. The Taiga Team
  21. {% endtrans %}