diff options
author | Alban Gruin | 2017-09-10 12:26:40 +0200 |
---|---|---|
committer | Alban Gruin | 2017-09-10 12:26:40 +0200 |
commit | 6eef540f3de6b6b7a81b058f99950da40af00359 (patch) | |
tree | 3b52a00451d132af64ca3b9480f5dbad66eaf4f2 /templatetags | |
parent | 965fb737b5ca4f258cc8f9ff1bd52ca1ce18a635 (diff) |
Ajout d’une page contact. L’adresse email est brouillée.
Diffstat (limited to 'templatetags')
-rw-r--r-- | templatetags/email.py | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/templatetags/email.py b/templatetags/email.py new file mode 100644 index 0000000..68dbd84 --- /dev/null +++ b/templatetags/email.py @@ -0,0 +1,24 @@ +# Copyright (C) 2017 Alban Gruin +# +# celcatsanitizer is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published +# by the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# celcatsanitizer is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with celcatsanitizer. If not, see <http://www.gnu.org/licenses/>. + +from django import template + +register = template.Library() + +@register.filter +def format_email(address): + return address.replace("+", " [plus] ") \ + .replace("@", " [arobase] ") \ + .replace(".", " [point] ") |