You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

39 lines
1.1 KiB

  1. {% extends "emails/base.html" %}
  2. {% load hc_extras %}
  3. {% block content %}
  4. Hello,
  5. <br />
  6. {% if inviting_project %}
  7. {% if inviting_project.name %}
  8. <strong>{{ inviting_project.owner.email }}</strong> invites you to their
  9. <a href="{% site_root %}">{% site_name %}</a>
  10. project <strong>{{ inviting_project }}</strong>.
  11. {% else %}
  12. <strong>{{ inviting_project.owner.email }}</strong> invites you to their
  13. <a href="{% site_root %}">{% site_name %}</a> account.
  14. {% endif %}
  15. <br /><br />
  16. You will be able to manage their
  17. existing monitoring checks and set up new ones. If you already have your
  18. own account on {% site_name %}, you will be able to switch
  19. between the two accounts.
  20. <br /><br />
  21. {% endif %}
  22. To log into <a href="{% site_root %}">{% site_name %}</a>,
  23. please press the button below:
  24. {% endblock %}
  25. {% block content_more %}
  26. Thanks,<br>
  27. The {% site_name %} Team
  28. <br /><br />
  29. <strong>P.S.</strong> Need help getting started? Check out our
  30. <a href="{% site_root %}/docs/">help documentation</a>.
  31. Or, just reply to this email with any questions or issues you have.
  32. {% endblock %}