Skip to content

Notifications

WALDUR_CORE.STRUCTURE

structure.change_email_request

A notification of an email change request

Templates

1
    Verify new email address.
1
    To confirm the change of email address from {{ request.user.email }} to {{ request.email }}, follow the {{ link }}.
1
    <p>To confirm the change of email address from {{ request.user.email }} to {{ request.email }}, follow the <a href="{{ link }}">link</a>.</p>

structure.notifications_profile_changes_operator

A notification of changing a profile

Templates

1
    Owner details have been updated
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
    Owner of
    {% for o in organizations %}
        {{ o.name }} {% if o.abbreviation %} ({{ o.abbreviation }}){% endif %}{% if not forloop.last %}, {% endif %}
    {% endfor %}

    {{user.full_name}} (id={{ user.id }}) has changed

    {% for f in fields %}
        {{ f.name }} from {{ f.old_value }} to {{ f.new_value }}{% if not forloop.last %}, {% else %}.{% endif %}
    {% endfor %}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
    Owner of
    {% for o in organizations %}
        {{ o.name }} {% if o.abbreviation %} ({{ o.abbreviation }}){% endif %}{% if not forloop.last %}, {% endif %}
    {% endfor %}

    {{user.full_name}} (id={{ user.id }}) has changed

    {% for f in fields %}
        {{ f.name }} from {{ f.old_value }} to {{ f.new_value }}{% if not forloop.last %}, {% else %}.{% endif %}
    {% endfor %}

structure.structure_role_granted

A notification of a granted role

Templates

1
    Role granted.
1
    Role {{ permission.role }}  for {{ structure }} has been granted.
1
    <p>Role {{ permission.role }}  for {{ structure }} has been granted.</p>

WALDUR_CORE.USERS

users.invitation_approved

A notification of invitation approval

Templates

1
    Account has been created
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
    Hello!

    {{ sender }} has invited you to join {{ name }} {{ type }} in {{ role }} role.
    Please visit the link below to sign up and accept your invitation:
    {{ link }}

    Your credentials are as following.

    Username is {{ username }}

    Your password is {{ password }}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Account has been created</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        {{ sender }} has invited you to join {{ name }} {{ type }} in {{ role }} role.<br>
        Please visit <a href="{{ link }}">this page</a> to sign up and accept your invitation.
    </p>
    <p>
      Your credentials are as following.
    </p>
    <p>
      Your username is {{ username }}
    </p>
    <p>
      Your password is {{ password }}
    </p>
    </body>
    </html>

users.invitation_created

A notification of invitation creation

Templates

1
2
3
4
5
    {% if reminder %}
    REMINDER: Invitation to {{ name }} {{ type }}
    {% else %}
    Invitation to {{ name }} {{ type }}
    {% endif %}
1
2
3
4
5
6
    Hello!

    {{ sender }} has invited you to join {{ name }} {{ type }} in {{ role }} role.
    Please visit the link below to sign up and accept your invitation:
    {{ link }}
    {{ extra_invitation_text }}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Invitation to {{ name }} {{ type }}</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        {{ sender }} has invited you to join {{ name }} {{ type }} in {{ role }} role.<br>
        Please visit <a href="{{ link }}">this page</a> to sign up and accept your invitation.
        Please note: this invitation expires at {{ invitation.get_expiration_time|date:'d.m.Y H:i' }}!
    </p>
    <p>
        {{ extra_invitation_text }}
    </p>
    </body>
    </html>

users.invitation_expired

A notification of expired invitation

Templates

1
    Invitation has expired
1
2
3
4
    Hello!

    An invitation to {{ invitation.email }} has expired.
    This invitation expires at {{ invitation.get_expiration_time|date:'d.m.Y H:i' }}.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Invitation to {{ invitation.email }} has expired</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        An invitation to {{ invitation.email }} has expired <br>
        An invitation to {{ invitation.email }} has expired at {{ invitation.get_expiration_time|date:'d.m.Y H:i' }}.

    </p>
    </body>
    </html>

users.invitation_rejected

A notification of invitation rejection

Templates

1
    Invitation has been rejected
1
2
3
4
5
6
7
8
9
    Hello!

    The following invitation has been rejected.

    Full name: {{ invitation.full_name }}

    Target: {{ name }} {{ type }}

    Role: {{ role }}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Invitation to {{ name }} {{ type }}</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
      The following invitation has been rejected.
    </p>

    <p>
      Full name: {{ invitation.full_name }}
    </p>

    <p>
      Target: {{ name }} {{ type }}
    </p>

    <p>
      Role: {{ role }}
    </p>
    </body>
    </html>

users.invitation_requested

A notification of invitation request

Templates

1
    Invitation request
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
    Hello!

    {{ sender }} has created invitation request for the following user
    to join {{ name }} {{ type }} in {{ role }} role.

    {% if invitation.civil_number %}
    Civil number: {{ invitation.civil_number }}
    {% endif %}

    {% if invitation.tax_number %}
    Tax number: {{ invitation.tax_number }}
    {% endif %}

    {% if invitation.phone_number %}
    Phone number: {{ invitation.phone_number }}
    {% endif %}

    E-mail: {{ invitation.email }}

    {% if invitation.full_name %}
    Full name: {{ invitation.full_name }}
    {% endif %}

    {% if invitation.native_name %}
    Native name: {{ invitation.native_name }}
    {% endif %}

    {% if invitation.organization %}
    Organization: {{ invitation.organization }}
    {% endif %}

    {% if invitation.job_title %}
    Job title: {{ invitation.job_title }}
    {% endif %}

    Please visit the link below to approve invitation: {{ approve_link }}

    Alternatively, you may reject invitation: {{ reject_link }}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
    <html>
    <head lang="en">
      <meta charset="UTF-8">
      <title>Invitation request</title>
    </head>
    <body>
    <p>
      Hello!
    </p>
    <p>
      {{ sender }} has created invitation request for the following user
      to join {{ name }} {{ type }} in {{ role }} role.
    </p>

    {% if invitation.civil_number %}
      <p>
        Civil number: {{ invitation.civil_number }}
      </p>
    {% endif %}

    {% if invitation.tax_number %}
      <p>
        Tax number: {{ invitation.tax_number }}
      </p>
    {% endif %}

    {% if invitation.phone_number %}
      <p>
        Phone number: {{ invitation.phone_number }}
      </p>
    {% endif %}

    <p>
      E-mail: {{ invitation.email }}
    </p>

    {% if invitation.full_name %}
      <p>
        Full name: {{ invitation.full_name }}
      </p>
    {% endif %}

    {% if invitation.native_name %}
      <p>
        Native name: {{ invitation.native_name }}
      </p>
    {% endif %}

    {% if invitation.organization %}
      <p>
        Organization: {{ invitation.organization }}
      </p>
    {% endif %}

    {% if invitation.job_title %}
      <p>
        Job title: {{ invitation.job_title }}
      </p>
    {% endif %}

    <p>
      Please <a href="{{ approve_link }}">approve</a> or <a href="{{ reject_link }}">reject</a> invitation.
    </p>
    </body>
    </html>

users.permission_request_submitted

A notification of a submitted invitation request

Templates

1
    Permission request has been submitted.
1
2
3
4
5
    Hello!

    User {{ permission_request.created_by }} with email {{ permission_request.created_by.email }} created permission request for {{ permission_request.invitation }}.

    Please visit the link below to approve or reject permission request: {{ requests_link }}.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
    <html>
    <head lang="en">
      <meta charset="UTF-8">
      <title>Permission request has been submitted.</title>
    </head>
    <body>
    <p>
      Hello!
    </p>
    <p>
      User {{ permission_request.created_by }} with email {{ permission_request.created_by.email }} created permission request for {{ permission_request.invitation }}.
    </p>
    <p>
      Please visit the <a href="{{ requests_link }}">link</a> to approve or reject permission request.
    </p>
    </body>
    </html>

WALDUR_MASTERMIND.BOOKING

booking.notification

A notification about upcoming bookings

Templates

1
    Reminder about upcoming booking.
1
2
3
4
5
6
    Hello!

    Please do not forget about upcoming booking:
    {% for resource in resources %}
        {{ resource.name }}{% if not forloop.last %}, {% endif %}
    {% endfor %}.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Reminder about upcoming booking.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Please do not forget about upcoming booking: <br />
        {% for resource in resources %}
            {{ resource.name }}
            {% if not forloop.last %}
                <br />
            {% endif %}
        {% endfor %}
    </p>
    </body>
    </html>

WALDUR_MASTERMIND.INVOICES

invoices.notification

A notification of invoice

Templates

1
    {{ customer }}'s invoice for {{ month }}/{{ year }}
1
2
3
4
    Hello,

    Please follow the link below to see {{ customer }}'s accounting information for {{ month }}/{{ year }}:
    {{ link }}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html xmlns="http://www.w3.org/1999/html">
    <head lang="en">
        <meta charset="UTF-8">
        <title>{{ customer }}'s invoice for {{ month }}/{{ year }}</title>
    </head>
    <body>
    <p>
        Dear Sir or Madam,
    </p>
    <p>
        Attached is invoice for services consumed by {{ customer }}'s during {{ month }}/{{ year }}.
    </p>
    </body>
    </html>

invoices.upcoming_ends_notification

A notification about upcoming ends

Templates

1
    {{ organization_name }}'s fixed price contract {{ contract_number }} is coming to an end
1
2
3
    Hello,

    this is a reminder that {{ organization_name }}'s fixed price contract {{ contract_number }} is ending on {{ end }}.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>{{ organization_name }}'s fixed price contract {{ contract_number }} is coming to an end.</title>
    </head>
    <body>
    <p>
        Hello,
        <br/>
        this is a reminder that {{ organization_name }}'s fixed price contract {{ contract_number }} is ending on {{ end }}.
    </p>
    </body>
    </html>

WALDUR_MASTERMIND.MARKETPLACE

marketplace.marketplace_resource_create_failed

A notification of a failed resource creation

Templates

1
    Resource {{ resource_name }} creation has failed.
1
2
3
    Hello!

    Resource {{ resource_name }} creation has failed.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource_name }} creation has failed.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Resource {{ resource_name }} creation has failed.
    </p>
    </body>
    </html>

marketplace.marketplace_resource_create_succeeded

A notification of a successful resource creation

Templates

1
    Resource {{ resource_name }} has been created.
1
2
3
    Hello!

    Resource {{ resource_name }} has been created.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource_name }} has been created.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Resource {{ resource_name }} has been created.
    </p>
    </body>
    </html>

marketplace.marketplace_resource_terminate_failed

A notification of a failed resource termination

Templates

1
    Resource {{ resource_name }} deletion has failed.
1
2
3
    Hello!

    Resource {{ resource_name }} deletion has failed.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource_name }} deletion has failed.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Resource {{ resource_name }} deletion has failed.
    </p>
    </body>
    </html>

marketplace.marketplace_resource_terminate_succeeded

A notification of a successful resource termination

Templates

1
    Resource {{ resource_name }} has been deleted.
1
2
3
    Hello!

    Resource {{ resource_name }} has been deleted.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource_name }} has been deleted.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Resource {{ resource_name }} has been deleted.
    </p>
    </body>
    </html>

marketplace.marketplace_resource_termination_scheduled

A notification of a scheduled resource termination

Templates

1
    Resource {{ resource.name }} termination has been scheduled.
1
2
3
    Hello!

    The resource you have - {{ resource.name }} has not been used for the past 3 months. {{ user.full_name }} has scheduled termination of that resource on {{ resource.end_date|date:"SHORT_DATE_FORMAT" }}. If you feel that you still want to keep it, please remove the resource end date {{ resource_url }}.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource.name }} termination has been scheduled.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        The resource you have - <a href="{{ resource_url }}">{{ resource.name }}</a> has not been used for the past 3 months. {{ user.full_name }} has scheduled termination of that resource on {{ resource.end_date|date:"SHORT_DATE_FORMAT" }}.
        If you feel that you still want to keep it, please <a href="{{ resource_url }}"></a>remove the resource end date</a>.
    </p>
    </body>
    </html>

marketplace.marketplace_resource_termination_scheduled_staff

A notification of a resource termination

Templates

1
    Resource {{ resource.name }} termination has been scheduled.
1
2
3
    Hello!

    The resource you have - {{ resource.name }} has not been used for the past 3 months. {{ user.full_name }} has scheduled termination of that resource on {{ resource.end_date|date:"SHORT_DATE_FORMAT" }}. If you feel that you still want to keep it, please remove the resource end date {{ resource_url }}.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource.name }} termination has been scheduled.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        The resource you have - <a href="{{ resource_url }}">{{ resource.name }}</a> has not been used for the past 3 months. {{ user.full_name }} has scheduled termination of that resource on {{ resource.end_date|date:"SHORT_DATE_FORMAT" }}.
        If you feel that you still want to keep it, please <a href="{{ resource_url }}"></a>remove the resource end date</a>.
    </p>
    </body>
    </html>

marketplace.marketplace_resource_update_failed

A notification of failed resource update

Templates

1
    Resource {{ resource_name }} update has failed.
1
2
3
    Hello!

    Resource {{ resource_name }} update has failed.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource_name }} update has failed.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Resource {{ resource_name }} update has failed.
    </p>
    </body>
    </html>

marketplace.marketplace_resource_update_limits_failed

A notification of failed resource limits update

Templates

1
    Resource {{ resource_name }} limits update has failed.
1
2
3
    Hello!

    Resource {{ resource_name }} limits update has failed.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource_name }} limits update has failed.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Resource {{ resource_name }} limits update has failed.
    </p>
    </body>
    </html>

marketplace.marketplace_resource_update_limits_succeeded

A notification of a successful resource limit update

Templates

1
    Resource {{ resource_name }} limits have been updated.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
    Hello!

    Following request from {{ order_item_user }}, resource {{ resource_name }} limits have been updated from:
        {{ resource_old_limits }}
    to:
        {{ resource_limits }}.

    {% if support_email or support_phone %}
    If you have any additional questions, please contact support.
    {% if support_email %}
    Email: {{ support_email }}
    {% endif %}
    {% if support_phone %}
    Phone: {{ support_phone }}
    {% endif %}
    {% endif %}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource_name }} limits have been updated.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Following request from {{ order_item_user }}, resource {{ resource_name }} limits have been updated from:<br>
        <blockquote>
            {{ resource_old_limits }}
        </blockquote>
        to:
        <blockquote>
            {{ resource_limits }}
        </blockquote>
    </p>
    {% if support_email or support_phone %}
    <p>
        If you have any additional questions, please contact support.
    </p>
    {% if support_email %}
    <p>
        Email: {{ support_email }}
    </p>
    {% endif %}
    {% if support_phone %}
    <p>
        Phone: {{ support_phone }}
    </p>
    {% endif %}
    {% endif %}
    </body>
    </html>

marketplace.marketplace_resource_update_succeeded

A notification of a successful resource update

Templates

1
    Resource {{ resource_name }} has been updated.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
    Hello!

    Following request from {{ order_item_user }}, resource {{ resource_name }} has been updated.

    {% if resource_old_plan %}
    The plan has been changed from {{ resource_old_plan }} to {{ resource_plan }}.
    {% endif %}

    {% if support_email or support_phone %}
    If you have any additional questions, please contact support.
    {% if support_email %}
    Email: {{ support_email }}
    {% endif %}
    {% if support_phone %}
    Phone: {{ support_phone }}
    {% endif %}
    {% endif %}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Resource {{ resource_name }} has been updated.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Following request from {{ order_item_user }}, resource {{ resource_name }} has been updated.
    </p>
    {% if resource_old_plan %}
    <p>
        The plan has been changed from {{ resource_old_plan }} to {{ resource_plan }}.
    </p>
    {% endif %}
    {% if support_email or support_phone %}
    <p>
        If you have any additional questions, please contact support.
    </p>
    {% if support_email %}
    <p>
        Email: {{ support_email }}
    </p>
    {% endif %}
    {% if support_phone %}
    <p>
        Phone: {{ support_phone }}
    </p>
    {% endif %}
    {% endif %}
    </body>
    </html>

marketplace.notification_about_project_ending

A notification about project ending

Templates

1
    Project {{ project.name }} will be deleted.
1
2
3
4
5
6
7
    Dear {{ user.full_name }},

    Your project {{ project.name }} is ending {% if delta == 1 %} tomorrow {% else %} in {{ delta }} days{% endif %}. End of the project will lead to termination of all resources in the project.
    If you are aware of that, then no actions are needed from your side.
    If you need to update project end date, please update it in project details {{ project_url }}.

    Thank you!
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Project {{ project.name }} will be deleted.</title>
    </head>
    <body>
    <p>Dear {{ user.full_name }},</p>

    <p>Your project {{ project.name }} is ending
        {% if delta == 1 %} tomorrow {% else %} in {{ delta }} days{% endif %}.
        End of the project will lead to termination of all resources in the project. <br />
        If you are aware of that, then no actions are needed from your side. <br />
        If you need to update project end date, please update it in project details {{ project_url }}.
    </p>

    <p>Thank you!</p>
    </body>
    </html>

marketplace.notification_about_stale_resources

A notification about stale resources

Templates

1
    Reminder about stale resources.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
    Hello!

    We noticed that you have stale resources that have not cost you anything for the last 3 months.
    Perhaps some of them are not needed any more?

    The resource names are:
    {% for resource in resources %}
        {{ resource.resource.name }} {{ resource.resource_url }}
    {% endfor %}
    Thank you!
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Reminder about stale resources.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        We noticed that you have stale resources that have not cost you anything for the last 3 months. <br />
        Perhaps some of them are not needed any more?<br />

        The resource names are:
        <ul>
            {% for resource in resources %}
                <li><a href='{{ resource.resource_url }}'>{{ resource.resource.name }}</a></li>
            {% endfor %}
        </ul>
        Thank you!
    </p>
    </body>
    </html>

marketplace.notification_approval

A notification of order approval

Templates

1
    A new order by {{ order.created_by.get_full_name }} is waiting for approval.
1
2
3
    Hello!

    A new order by {{ order.created_by.get_full_name }} is waiting for approval.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>A new order by {{ order.created_by.get_full_name }} is waiting for approval.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Please visit <a href="{{ order_url }}">{{ site_name }}</a> to find out more details.
    </p>
    </body>
    </html>

marketplace.notification_service_provider_approval

A notification to provider about pending order item approval

Templates

1
    A new order by {{ order.created_by.get_full_name }} is waiting for approval.
1
2
3
    Hello!

    A new order by {{ order.created_by.get_full_name }} is waiting for approval.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>A new order by {{ order.created_by.get_full_name }} is waiting for approval.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Please visit <a href="{{ order_item_url }}">{{ site_name }}</a> to find out more details.
    </p>
    </body>
    </html>

marketplace.notification_usages

A notification about usages

Templates

1
    Reminder about missing usage reports.
1
2
3
4
5
6
7
8
    Hello!

    Please do not forget to add usage for the resources you provide:
    {% regroup resources by offering as offering_list %}{% for offering in offering_list %}
    {{forloop.counter}}. {{ offering.grouper.name }}:{% for resource in offering.list %}
        - {{ resource.name }}
    {% endfor %}{% endfor %}
    You can submit resource usage via API or do it manually at {{ public_resources_url }}.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Reminder about missing usage reports.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>Please do not forget to add usage for the resources you provide:</p>
    {% regroup resources by offering as offering_list %}

    <ol>
    {% for offering in offering_list %}
        <li>
            {{ offering.grouper.name }}:
            <ul>
                {% for resource in offering.list %}
                <li>{{ resource.name }}</li>
                {% endfor %}
            </ul>
        </li>
    {% endfor %}
    </ol>

    <p>
        You can submit resource usage via API or do it <a href='{{ public_resources_url }}'>manually</a>.
    </p>
    </body>
    </html>

WALDUR_MASTERMIND.MARKETPLACE_FLOWS

marketplace_flows.flow_rejected

A notification for a rejected marketplace flow

Templates

1
2
    {% load i18n %}
    {% trans 'Your submission has been rejected' %}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
    {% load i18n %}

    {% if flow.customer_create_request.is_rejected %}
    {% trans 'Customer creation request has been rejected.' %}

    {% if flow.customer_create_request.reviewed_by %}
    {% trans 'Reviewer name:' %} {{ flow.customer_create_request.reviewed_by.full_name }}
    {% endif %}

    {% if flow.customer_create_request.reviewed_at %}
    {% trans 'Reviewed at:' %}
    {{ flow.customer_create_request.reviewed_at|date:"SHORT_DATE_FORMAT" }}
    {{ flow.customer_create_request.reviewed_at|time:"H:i" }}
    {% endif %}

    {% if flow.customer_create_request.review_comment %}
    {% trans 'Comment:' %} {{ flow.customer_create_request.review_comment }}
    {% endif %}
    {% endif %}


    {% if flow.project_create_request.is_rejected %}
    {% trans 'Project creation request has been rejected.' %}

    {% if flow.project_create_request.reviewed_by %}
    {% trans 'Reviewer name:' %} {{ flow.project_create_request.reviewed_by.full_name }}
    {% endif %}

    {% if flow.project_create_request.reviewed_at %}
    {% trans 'Reviewed at:' %}
    {{ flow.project_create_request.reviewed_at|date:"SHORT_DATE_FORMAT" }}
    {{ flow.project_create_request.reviewed_at|time:"H:i" }}
    {% endif %}

    {% if flow.project_create_request.review_comment %}
    {% trans 'Comment:' %} {{ flow.project_create_request.review_comment }}
    {% endif %}
    {% endif %}

    {% if flow.resource_create_request.is_rejected %}
    {% trans 'Resource creation request has been rejected.' %}

    {% if flow.resource_create_request.reviewed_by %}
    {% trans 'Reviewer name:' %} {{ flow.resource_create_request.reviewed_by.full_name }}
    {% endif %}

    {% if flow.resource_create_request.reviewed_at %}
    {% trans 'Reviewed at:' %}
    {{ flow.resource_create_request.reviewed_at|date:"SHORT_DATE_FORMAT" }}
    {{ flow.resource_create_request.reviewed_at|time:"H:i" }}
    {% endif %}

    {% if flow.resource_create_request.review_comment %}
    {% trans 'Comment:' %} {{ flow.resource_create_request.review_comment }}
    {% endif %}
    {% endif %}
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
    {% load i18n %}
    {% if flow.customer_create_request.is_rejected %}
    <p>{% trans 'Customer creation request has been rejected.' %}</p>

    {% if flow.customer_create_request.reviewed_by %}
    <p><b>{% trans 'Reviewer name:' %}</b> {{ flow.customer_create_request.reviewed_by.full_name }}</p>
    {% endif %}

    {% if flow.customer_create_request.reviewed_at %}
    <p><b>{% trans 'Reviewed at:' %}</b>
    {{ flow.customer_create_request.reviewed_at|date:"SHORT_DATE_FORMAT" }}
    {{ flow.customer_create_request.reviewed_at|time:"H:i" }}</p>
    {% endif %}

    {% if flow.customer_create_request.review_comment %}
    <p><b>{% trans 'Comment:' %}</b> {{ flow.customer_create_request.review_comment }}</p>
    {% endif %}
    {% endif %}


    {% if flow.project_create_request.is_rejected %}
    <p>{% trans 'Project creation request has been rejected.' %}</p>

    {% if flow.project_create_request.reviewed_by %}
    <p><b>{% trans 'Reviewer name:' %}</b> {{ flow.project_create_request.reviewed_by.full_name }}</p>
    {% endif %}

    {% if flow.project_create_request.reviewed_at %}
    <p><b>{% trans 'Reviewed at:' %}</b>
    {{ flow.project_create_request.reviewed_at|date:"SHORT_DATE_FORMAT" }}
    {{ flow.project_create_request.reviewed_at|time:"H:i" }}</p>
    {% endif %}

    {% if flow.project_create_request.review_comment %}
    <p><b>{% trans 'Comment:' %}</b> {{ flow.project_create_request.review_comment }}</p>
    {% endif %}
    {% endif %}

    {% if flow.resource_create_request.is_rejected %}
    <p>{% trans 'Resource creation request has been rejected.' %}</p>

    {% if flow.resource_create_request.reviewed_by %}
    <p><b>{% trans 'Reviewer name:' %}</b> {{ flow.resource_create_request.reviewed_by.full_name }}</p>
    {% endif %}

    {% if flow.resource_create_request.reviewed_at %}
    <p><b>{% trans 'Reviewed at:' %}</b>
    {{ flow.resource_create_request.reviewed_at|date:"SHORT_DATE_FORMAT" }}
    {{ flow.resource_create_request.reviewed_at|time:"H:i" }}</p>
    {% endif %}

    {% if flow.resource_create_request.review_comment %}
    <p><b>{% trans 'Comment:' %}</b> {{ flow.resource_create_request.review_comment }}</p>
    {% endif %}
    {% endif %}

marketplace_flows.flow_submitted

A notification for a submitted marketplace flow

Templates

1
2
    {% load i18n %}
    {% trans 'Resource creation request has been submitted' %}
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
    {% load i18n %}
    {% load waldur_core %}

    {% trans 'Resource creation request has been submitted.' %}

    It has been requested by user {{ flow.requested_by.full_name }} with email {{ flow.requested_by.email }}.

    {% if flow.customer_create_request %}
    {% trans 'Customer create request details are:' %}

    * {% trans 'Organization name' %}: {{ flow.customer_create_request.name }}

    {% if flow.customer_create_request.native_name %}
    * {% trans 'Organization native name' %}: {{ flow.customer_create_request.native_name }}
    {% endif %}

    {% if flow.customer_create_request.abbreviation %}
    * {% trans 'Organization abbreviation' %}: {{ flow.customer_create_request.abbreviation }}
    {% endif %}

    {% if flow.customer_create_request.contact_details %}
    * {% trans 'Contact details' %}: {{ flow.customer_create_request.contact_details }}
    {% endif %}

    {% if flow.customer_create_request.agreement_number %}
    * {% trans 'Contact details' %}: {{ flow.customer_create_request.agreement_number }}
    {% endif %}

    {% if flow.customer_create_request.sponsor_number %}
    * {% trans 'External ID of the sponsor covering the costs' %}: {{ flow.customer_create_request.sponsor_number }}
    {% endif %}

    {% if flow.customer_create_request.email %}
    * {% trans 'Email address' %}: {{ flow.customer_create_request.email }}
    {% endif %}

    {% if flow.customer_create_request.phone_number %}
    * {% trans 'Phone number' %}: {{ flow.customer_create_request.phone_number }}
    {% endif %}

    {% if flow.customer_create_request.access_subnets %}
    * {% trans 'List of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed' %}: {{ flow.customer_create_request.access_subnets }}
    {% endif %}

    {% if flow.customer_create_request.registration_code %}
    * {% trans 'Registration code' %}: {{ flow.customer_create_request.registration_code }}
    {% endif %}

    {% if flow.customer_create_request.homepage %}
    * {% trans 'Homepage URL' %}: {{ flow.customer_create_request.homepage }}
    {% endif %}

    {% if flow.customer_create_request.domain %}
    * {% trans 'Organization domain' %}: {{ flow.customer_create_request.domain }}
    {% endif %}

    {% if flow.customer_create_request.address %}
    * {% trans 'Legal address' %}: {{ flow.customer_create_request.address }}
    {% endif %}

    {% if flow.customer_create_request.postal %}
    * {% trans 'Postal code' %}: {{ flow.customer_create_request.postal }}
    {% endif %}

    {% if flow.customer_create_request.bank_name %}
    * {% trans 'Bank name (for accounting)' %}: {{ flow.customer_create_request.bank_name }}
    {% endif %}

    {% if flow.customer_create_request.bank_account %}
    * {% trans 'Bank account number' %}: {{ flow.customer_create_request.bank_account }}
    {% endif %}

    {% else %}
    {% trans 'Organization name' %}: {{ flow.customer.name }}

    {% endif %}

    {% trans 'Project create request details are:' %}

    * {% trans 'Name' %}: {{ flow.project_create_request.name }}

    {% if flow.project_create_request.description %}
    * {% trans 'Description' %}: {{ flow.project_create_request.description }}
    {% endif %}

    {% if flow.project_create_request.end_date %}
    * {% trans 'End date' %}: {{ flow.project_create_request.end_date }}
    {% endif %}

    {% trans 'Resource create request details are:' %}

    * {% trans 'Name' %}: {{ flow.resource_create_request.name }}

    {% if flow.resource_create_request.description %}
    * {% trans 'Description' %}: {{ flow.resource_create_request.description }}
    {% endif %}

    {% if flow.resource_create_request.end_date %}
    * {% trans 'End date' %}: {{ flow.resource_create_request.end_date }}
    {% endif %}

    * {% trans 'Offering name' %}: {{ flow.resource_create_request.offering.name }}

    * {% trans 'Offering category' %}: {{ flow.resource_create_request.offering.category.title }}

    {% if flow.resource_create_request.plan %}
    * {% trans 'Plan' %}: {{ flow.resource_create_request.plan.name }}
    {% endif %}

    {% if flow.resource_create_request.attributes %}
    * {% trans 'Attributes' %}:

    {% for key, value in flow.resource_create_request.attributes.items|dictsort:"0.lower" %}
    {{ key }}: {{ value | pretty_json }}
    {% endfor %}

    {% endif %}

    {% if flow.resource_create_request.limits %}
    * {% trans 'Limits' %}:

    {% for key, value in flow.resource_create_request.limits.items|dictsort:"0.lower" %}
    {{ key }}: {{ value }}
    {% endfor %}

    {% endif %}
  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
    {% load i18n %}
    {% load waldur_core %}

    <!DOCTYPE html>
    <html>

    <head>
      <meta charset="utf-8">
      <title>{% trans "Resource creation request details" %}</title>
    </head>
    <body>
    <p>It has been requested by user {{ flow.requested_by.full_name }} with email {{ flow.requested_by.email }}.</p>

    {% if flow.customer_create_request %}
    <h1>{% trans 'Customer create request details' %}</h1>

    <ul>
        <li><b>{% trans 'Organization name' %}</b>: {{ flow.customer_create_request.name }}</li>

    {% if flow.customer_create_request.native_name %}
        <li><b>{% trans 'Organization native name' %}</b>: {{ flow.customer_create_request.native_name }}</li>
    {% endif %}

    {% if flow.customer_create_request.abbreviation %}
        <li><b>{% trans 'Organization abbreviation' %}</b>: {{ flow.customer_create_request.abbreviation }}</li>
    {% endif %}

    {% if flow.customer_create_request.contact_details %}
        <li><b>{% trans 'Contact details' %}: {{ flow.customer_create_request.contact_details }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.agreement_number %}
        <li><b>{% trans 'Contact details' %}: {{ flow.customer_create_request.agreement_number }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.sponsor_number %}
        <li><b>{% trans 'External ID of the sponsor covering the costs' %}: {{ flow.customer_create_request.sponsor_number }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.email %}
        <li><b>{% trans 'Email address' %}: {{ flow.customer_create_request.email }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.phone_number %}
        <li><b>{% trans 'Phone number' %}: {{ flow.customer_create_request.phone_number }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.access_subnets %}
        <li><b>{% trans 'List of IPv4 or IPv6 CIDR addresses from where connection to self-service is allowed' %}: {{ flow.customer_create_request.access_subnets }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.registration_code %}
        <li><b>{% trans 'Registration code' %}: {{ flow.customer_create_request.registration_code }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.homepage %}
        <li><b>{% trans 'Homepage URL' %}: {{ flow.customer_create_request.homepage }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.domain %}
        <li><b>{% trans 'Organization domain' %}: {{ flow.customer_create_request.domain }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.address %}
        <li><b>{% trans 'Legal address' %}: {{ flow.customer_create_request.address }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.postal %}
        <li><b>{% trans 'Postal code' %}: {{ flow.customer_create_request.postal }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.bank_name %}
        <li><b>{% trans 'Bank name (for accounting)' %}: {{ flow.customer_create_request.bank_name }}</b></li>
    {% endif %}

    {% if flow.customer_create_request.bank_account %}
        <li><b>{% trans 'Bank account number' %}: {{ flow.customer_create_request.bank_account }}</b></li>
    {% endif %}
    </ul>
    {% else %}
    <b>{% trans 'Organization name' %}</b>: {{ flow.customer.name }}
    {% endif %}

    <h1>{% trans 'Project create request details' %}</h1>

    <ul>
    <li><b>{% trans 'Name' %}: {{ flow.project_create_request.name }}</b></li>

    {% if flow.project_create_request.description %}
    <li><b>{% trans 'Description' %}: {{ flow.project_create_request.description }}</b></li>
    {% endif %}

    {% if flow.project_create_request.end_date %}
    <li><b>{% trans 'End date' %}: {{ flow.project_create_request.end_date }}</b></li>
    {% endif %}
    </ul>

    <h1>{% trans 'Resource create request details' %}</h1>

    <ul>
    <li><b>{% trans 'Name' %}: {{ flow.resource_create_request.name }}</b></li>

    {% if flow.resource_create_request.description %}
    <li><b>{% trans 'Description' %}: {{ flow.resource_create_request.description }}</b></li>
    {% endif %}

    {% if flow.resource_create_request.end_date %}
    <li><b>{% trans 'End date' %}: {{ flow.resource_create_request.end_date }}</b></li>
    {% endif %}

    <li><b>{% trans 'Offering name' %}: {{ flow.resource_create_request.offering.name }}</b></li>

    <li><b>{% trans 'Offering category' %}: {{ flow.resource_create_request.offering.category.title }}</b></li>

    {% if flow.resource_create_request.plan %}
    <li><b>{% trans 'Plan' %}: {{ flow.resource_create_request.plan.name }}</b></li>
    {% endif %}

    {% if flow.resource_create_request.attributes %}
    <li><b>{% trans 'Attributes' %}</b>:

    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
      <th>#</th>
      <th>{% trans "NAME" %}</th>
      <th>{% trans "VALUE" %}</th>
    </tr>
    {% for key, value in flow.resource_create_request.attributes.items|dictsort:"0.lower" %}
      <tr>
        <td>{{ forloop.counter }}</td>
        <td>{{ key }}</td>
        <td>{{ value | pretty_json }}</td>
      </tr>
    {% endfor %}
    </table>
    </li>
    {% endif %}

    {% if flow.resource_create_request.limits %}
    <li><b>{% trans 'Limits' %}</b>:
    <table border="0" cellspacing="0" cellpadding="0">
    <tr>
      <th>#</th>
      <th>{% trans "NAME" %}</th>
      <th>{% trans "VALUE" %}</th>
    </tr>
    {% for key, value in flow.resource_create_request.limits.items|dictsort:"0.lower" %}
      <tr>
        <td>{{ forloop.counter }}</td>
        <td>{{ key }}</td>
        <td>{{ value }}</td>
      </tr>
    {% endfor %}
    </table>
    </li>
    {% endif %}
    </ul>
    </body>
    </html>

WALDUR_RANCHER

rancher.notification_create_user

A notification for created rancher user

Templates

1
    New account has been created.
1
2
3
4
    Hello!

    User with login {{ user.username }} and temporary password {{ password }} has been created.
    Please go to management console {{ rancher_url }} to change the password.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>A new user account has been created for you.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        User with login {{ user.username }} and temporary password {{ password }} has been created.<br />
        Please go to <a href="{{ rancher_url }}">management console</a> to change the password.
    </p>
    </body>
    </html>

WALDUR_MASTERMIND.MARKETPLACE_REMOTE

marketplace_remote.notification_about_pending_project_updates

A notification about pending project updates

Templates

1
    Reminder about pending project updates.
1
2
3
4
5
6
7
8
    Hello!

    We noticed that you have pending project update requests.
    Perhaps you would like to have a look at them?

    The project is:
        {{ project_update_request.project.name }} {{ project_url }}
    Thank you!
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Reminder about pending project updates.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        We noticed that you have pending project update requests.<br />
        Perhaps you would like to have a look at them?<br />

        The project is:
        <ul>
            <li><a href='{{ project_url }}'>{{ project_update_request.project.name }}</a></li>
        </ul>
        Thank you!
    </p>
    </body>
    </html>

marketplace_remote.notification_about_project_details_update

A notification about project details update

Templates

1
    A notification about project details update.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
    Hello!

    We would like to notify you about recent updates in project details.
    Perhaps you would like to have a look at them?

    The project is:
        {{ new_name }} {{ project_url }}

        Details after the update are below:
            {% if new_description %}
                Old description: {{ old_description }}
                New description: {{ new_description }}
            {% endif %}

            {% if new_name %}
                Old name: {{ old_name }}
                New name: {{ new_name }}
            {% endif %}

            {% if new_end_date %}
               Old end date: {{ old_end_date }}
               New end date: {{ new_end_date }}
            {% endif %}

            {% if new_oecd_fos_2007_code %}
               Old OECD FOS 2007 code: {{ old_oecd_fos_2007_code }}
               New OECD FOS 2007 code: {{ new_oecd_fos_2007_code }}
            {% endif %}

            {% if new_is_industry %}
               Old is_industry: {{ old_is_industry }}
               New is_industry: {{ new_is_industry }}
            {% endif %}

        Reviewed by: {{ reviewed_by }}
    Thank you!
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>A notification about project details update.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        We would like to notify you about recent updates in project details.<br />
        Perhaps you would like to have a look at them?<br />

        The project is:
        <ul>
            <li><a href='{{ project_url }}'>{{ new_name }}</a></li>
        </ul>

        <div>
            Details after the update are below:
            <ul>
                {% if new_description %}
                    <li>Old description: {{ old_description }}</li>
                    <li>New description: {{ new_description }}</li>
                {% endif %}

                {% if new_name %}
                    <li>Old name: {{ old_name }}</li>
                    <li>New name: {{ new_name }}</li>
                {% endif %}

                {% if new_end_date %}
                    <li>Old end date: {{ old_end_date }}</li>
                    <li>New end date: {{ new_end_date }}</li>
                {% endif %}

                {% if new_oecd_fos_2007_code %}
                    <li>Old OECD FOS 2007 code: {{ old_oecd_fos_2007_code }}</li>
                    <li>New OECD FOS 2007 code: {{ new_oecd_fos_2007_code }}</li>
                {% endif %}

                {% if new_is_industry %}
                    <li>Old is_industry: {{ old_is_industry }}</li>
                    <li>New is_industry: {{ new_is_industry }}</li>
                {% endif %}
                <li>Reviewed by: {{ reviewed_by }}</li>
            </ul>

        </div>
        Thank you!
    </p>
    </body>
    </html>

marketplace_policy.notification_about_project_cost_exceeded_limit

Notification about project cost exceeded limit.

Templates

1
    Project {{ project_name }} cost has exceeded the limit.
1
2
    Hello!
    Project {{ project_name }} ({{ project_url }}) cost has exceeded the limit of {{ limit }}.
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
    <html>
    <head lang="en">
        <meta charset="UTF-8">
        <title>Project {{ project_name }} cost has exceeded the limit.</title>
    </head>
    <body>
    <p>
        Hello!
    </p>
    <p>
        Project <a href='{{ project_url }}'>{{ project_name }}</a> cost has exceeded the limit of {{ limit }}.
    </p>
    </body>
    </html>

Last update: 2023-06-30