For our parcel station and international mail boxes.
+
For our parcel station and international mail boxes.
Send your BPM voucher code to:
: info@enn.lu GPG: 0x02225522
diff --git a/ennstatus/templates/donate/macros.html b/ennstatus/templates/donate/macros.html
--- a/ennstatus/templates/donate/macros.html
+++ b/ennstatus/templates/donate/macros.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see .
+#}
+
{% macro colorize_numbers(number) %}
{% if number.startswith('-') %}
{% set color = "text-danger" %}
@@ -10,7 +27,7 @@
{{ number }}
{% endmacro %}
-{% macro create_donations_table(csv_file) %}
+{% macro create_donations_table(csv_file, total) %}
@@ -30,6 +47,10 @@
{{ colorize_numbers(row[2]) }} |
{% endfor %}
+
+ Total: |
+ {{ colorize_numbers(total) }} |
+
diff --git a/ennstatus/templates/donate/received.html b/ennstatus/templates/donate/received.html
--- a/ennstatus/templates/donate/received.html
+++ b/ennstatus/templates/donate/received.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
.
+#}
+
{% extends "base.html" %}
{% import "donate/macros.html" as macros %}
@@ -30,7 +47,7 @@
{% if csv_file %}
- {{ macros.create_donations_table(csv_file) }}
+ {{ macros.create_donations_table(csv_file, total) }}
{% else %}
{% if year and month %}
No donations found for {{ '-'.join([year, month]) }}!
diff --git a/ennstatus/templates/errorpages/404.html b/ennstatus/templates/errorpages/404.html
--- a/ennstatus/templates/errorpages/404.html
+++ b/ennstatus/templates/errorpages/404.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
.
+#}
+
{% extends "base.html" %}
{% set title = "404 - Not found" %}
diff --git a/ennstatus/templates/macros.html b/ennstatus/templates/macros.html
--- a/ennstatus/templates/macros.html
+++ b/ennstatus/templates/macros.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
.
+#}
+
{% set category_colors = {'error': 'alert-danger', 'success': 'alert-success'} %}
{% macro get_category_color(category) %}
diff --git a/ennstatus/templates/root/about.html b/ennstatus/templates/root/about.html
--- a/ennstatus/templates/root/about.html
+++ b/ennstatus/templates/root/about.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
.
+#}
+
{% extends "base.html" %}
{% set title = "Who we are" %}
diff --git a/ennstatus/templates/root/abuse.html b/ennstatus/templates/root/abuse.html
--- a/ennstatus/templates/root/abuse.html
+++ b/ennstatus/templates/root/abuse.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
.
+#}
+
{% extends "base.html" %}
{% set title = "Abuse" %}
diff --git a/ennstatus/templates/root/bridgeprogram.html b/ennstatus/templates/root/bridgeprogram.html
--- a/ennstatus/templates/root/bridgeprogram.html
+++ b/ennstatus/templates/root/bridgeprogram.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
.
+#}
+
{% extends "base.html" %}
{% import 'bootstrap/wtf.html' as wtf %}
diff --git a/ennstatus/templates/root/contact.html b/ennstatus/templates/root/contact.html
--- a/ennstatus/templates/root/contact.html
+++ b/ennstatus/templates/root/contact.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see
.
+#}
+
{% extends "base.html" %}
{% set title = "Contact" %}
@@ -32,22 +49,21 @@
:
info@enn.lu GPG:
0x02225522
:
enn.lu/ or {{ config['ENNSTATUS_ONION_ADDRESS'] }}
-
: +352-691-71-77-44
-
: +352-20-21-18-60
+
: {{ config['ENNSTATUS_PHONE_NUMBER'] }}
Abuse
For further details about abuse handling, have a look over here.
: abuse@enn.lu GPG: 0x02225522
- : +352-691-71-77-44
+ : {{ config['ENNSTATUS_PHONE_NUMBER'] }}
Press
Press related inqueries should go to:
: press@enn.lu GPG: 0x02225522
- : +352-691-71-77-44
+ : {{ config['ENNSTATUS_PHONE_NUMBER'] }}
diff --git a/ennstatus/templates/root/ennstatus.html b/ennstatus/templates/root/ennstatus.html
--- a/ennstatus/templates/root/ennstatus.html
+++ b/ennstatus/templates/root/ennstatus.html
@@ -1,3 +1,20 @@
+{# Ënnstatus
+ Copyright (C) 2015 Dennis Fink
+
+ This program is free software: you can redistribute it and/or modify
+ it under the terms of the GNU General Public License as published by
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program 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 General Public License for more details.
+
+ You should have received a copy of the GNU General Public License
+ along with this program. If not, see