Skip to content

Commit

Permalink
fix #1 fix missing import currency filter
Browse files Browse the repository at this point in the history
  • Loading branch information
Skrattoune committed Mar 12, 2022
1 parent e054368 commit a96ed04
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 6 deletions.
2 changes: 2 additions & 0 deletions openrepairplatform/event/templates/event/mail/book.html
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@
}
}
</style>

{% load app_filters%}
</head>
<body class="clean-body" style="margin: 0; padding: 0; -webkit-text-size-adjust: 100%; background-color: #083342;">
<!--[if IE]><div class="ie-browser"><![endif]-->
Expand Down
1 change: 1 addition & 0 deletions openrepairplatform/event/templates/event/mail/book.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% load app_filters%}
{{ user }},

Vous avez réservé une place pour {{ event.activity.name }} du {{ event.date_interval_format }}.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,7 @@
}
}
</style>
{% load app_filters%}
</head>
<body class="clean-body" style="margin: 0; padding: 0; -webkit-text-size-adjust: 100%; background-color: #083342;">
<!--[if IE]><div class="ie-browser"><![endif]-->
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% load app_filters%}
{{ user }},

Vous avez réservé une place pour {{ event.activity.name }} du {{ event.date_interval_format }}.
Expand Down
10 changes: 5 additions & 5 deletions openrepairplatform/static/scss/variables.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$primary: #083342;
$secondary: #fee56e;
$primary: #00796B;
$secondary: #009688;
$success: #2be6ab;
$link: #49d3be;
$bg-light: #f8f9fa;
$danger: #ff2241;
$link: #498ed3;
$bg-light: #B2DFDB;
$danger: #FFC107;
2 changes: 1 addition & 1 deletion openrepairplatform/templates/organization_fees.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{% extends 'organization_page.html' %}
{% load static thumbnail%}
{% load static thumbnail app_filters%}
{% load bootstrap5 %}
{% load querystring from django_tables2 %}
{% load django_tables2 %}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% load app_filters%}
{{ user }},

<p>
Expand Down
1 change: 1 addition & 0 deletions openrepairplatform/user/templates/user/mail/membership.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
{% load app_filters%}
{{ user }},

Tu es désormais membre de {{organization}}, depuis le {{date}}. Tu as donné {{paid|currency}} pour ta première adhésion.

0 comments on commit a96ed04

Please sign in to comment.