diff --git a/callattendant/userinterface/templates/fr-FR/base.html b/callattendant/userinterface/templates/fr-FR/base.html new file mode 100644 index 0000000..3c508e2 --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/base.html @@ -0,0 +1,133 @@ + + + + {% block head %} + {% block title %}{% endblock %} | Call Attendant + {% endblock %} + + + + + + + {% block stylesheet %} + {% endblock %} + + + + + {% with messages = get_flashed_messages() %} + {% if messages %} + {% for message in messages %} + + {% endfor %} + {% endif %} + {% endwith %} + + {% block content %}{% endblock %} + + + + + +{% block js %}{% endblock %} + + + + diff --git a/callattendant/userinterface/templates/fr-FR/callers_blocked.html b/callattendant/userinterface/templates/fr-FR/callers_blocked.html new file mode 100644 index 0000000..b9f51f1 --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/callers_blocked.html @@ -0,0 +1,153 @@ +{% extends "base.html" %} + +{% block title %}Appels bloqués{% endblock %} + +{% block content %} +
+

Bloqués + + + +

+
+ +
+
+
+ {% if blacklist %} + {{ pagination.links }} + + + + + + + + + + + {% for row in blacklist %} + + + + + + + {% endfor %} + +
NuméroRaison
+ {{ row.Phone_Number }} - +
+ {{ row.Name }} +
{{ row.Reason }} + + + +
+ {{ pagination.links }} + {% endif %} +
+ +
+ + + + + + +{% endblock %} + +{% block js %} + +{% endblock %} diff --git a/callattendant/userinterface/templates/fr-FR/callers_manage.html b/callattendant/userinterface/templates/fr-FR/callers_manage.html new file mode 100644 index 0000000..0394a21 --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/callers_manage.html @@ -0,0 +1,123 @@ +{% extends "base.html" %} + +{% block title %}Appelant #{{ caller.call_no }}{% endblock %} + +{% block content %} +
+

Appelant

+
Numéro : {{ caller.phone_no }}
+
Nom : {{ caller.name }}
+ {% if caller.whitelisted == 'Y' %} + + {% elif caller.blacklisted == 'Y' %} + + {% else %} + + {% endif %} + {% if caller.whitelisted == 'N' %} + + {% else %} + + {% endif %} + {% if caller.blacklisted == 'N' %} + + {% else %} + + {% endif %} + +
+{% endblock %} + + +{% block js %} + +{% endblock %} diff --git a/callattendant/userinterface/templates/fr-FR/callers_permitted.html b/callattendant/userinterface/templates/fr-FR/callers_permitted.html new file mode 100644 index 0000000..7c659ca --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/callers_permitted.html @@ -0,0 +1,156 @@ +{% extends "base.html" %} + +{% block title %}Autorisés{% endblock %} + +{% block content %} +
+

Numéros autorisés + + + +

+
+ +
+
+
+ {% if whitelist %} + {{ pagination.links }} + + + + + + + + + + + + {% for item in whitelist %} + + + + + + + + {% endfor %} + +
NuméroRaison
+ {{ item.Phone_Number }} - +
+ {{ item.Name }} +
{{ item.Reason }} + + + +
+ {{ pagination.links }} + {% endif %} +
+ +
+ + + + + +{% endblock %} + +{% block js %} + +{% endblock %} diff --git a/callattendant/userinterface/templates/fr-FR/calls.html b/callattendant/userinterface/templates/fr-FR/calls.html new file mode 100644 index 0000000..d9d4eda --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/calls.html @@ -0,0 +1,122 @@ +{% extends "base.html" %} + +{% block title %}Journal d'appels{% endblock %} + +{% block content %} +
+

Journal d'appels + + + + +

+ {% if search_criteria %} + Recherche : {{ search_criteria }}   + + {% endif %} + {% if not calls %} +

Résultats : Aucuns

+ {% else %} +
+
+ {{ pagination.info }} + {{ pagination.links }} +
+ + + + + + + + + + + {% for item in calls %} + + + + + + + {% endfor %} + +
Date/HeureAppelantActionsRaison
+ {{ item.time }} +
+ {{ item.date }} +
+ {{ item.phone_no }} +
+ {{ item.name }} +
+ + {{ item.action }} + + + {% if item.msg_no is not none %} + + {% endif %} + + + {{ item.reason }} +
+ {{ pagination.links }} + {% endif %} +
+ +
+{% include 'modal_play_message.html' %} +{% endblock %} + +{% block js %} + +{% endblock %} diff --git a/callattendant/userinterface/templates/fr-FR/calls_view.html b/callattendant/userinterface/templates/fr-FR/calls_view.html new file mode 100644 index 0000000..717e0e8 --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/calls_view.html @@ -0,0 +1,130 @@ +{% extends "base.html" %} + +{% block title %}Appels #{{ caller.call_no }}{% endblock %} + +{% block content %} +
+
+
+
Numéro : {{ caller.time }} le {{ caller.date }}
+
+
+

+ + Appel le : {{ caller.action }} + +

+

Raison : {{ caller.reason }}

+
+
+ +
+
+
Numéro : {{ caller.phone_no }} - {{caller.name }}
+
+
+

+ {% if caller.whitelisted == 'Y' %}Ce numéro est autorisé et ses appels ne seront pas filtrés ni bloqués + {% elif caller.blacklisted == 'Y' %}Ce numéro est bloqué et ses appels seront immédiatement interceptés. + {% else %}Ce numéro est autorisé mais ses appels seront filtrés en cas de prospection téléphonique, appels automatisés, robots, etc. + {% endif %} +

+ Modifier + Historique +
+
+ {% if caller.msg_no is not none %} +
+
+
Message vocal
+
+
+

+ +

+ + +
+
+ {% endif %} + + +
+ + + + +{% endblock %} + + +{% block js %} + +{% endblock %} diff --git a/callattendant/userinterface/templates/fr-FR/dashboard.html b/callattendant/userinterface/templates/fr-FR/dashboard.html new file mode 100644 index 0000000..6014638 --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/dashboard.html @@ -0,0 +1,255 @@ +{% extends "base.html" %} + +{% block title %}Panneau de contrôle{% endblock %} + +{% block content %} +
+
+

Statistiques

+ +
+ +
+ {% if new_messages > 0 %} +
+ +
+ {% endif %} +
+ +
+
+ +

Appels récents + + + +

+ {% if recent_calls %} + + + + + + + + + + {% for item in recent_calls %} + + + + + + {% endfor %} + +
Date/HeureNuméroActions
+ {{ item.time }} +
+ {{ item.date }} +
+ + {{ item.phone_no }} + +
+ {{ item.name }} +
+ + {{ item.action }} + + + {% if item.msg_no is not none %} + + {% endif %} + +
+ {% endif %} +
+
+ +
+
+ +

Appels par jour

+ + {% if calls_per_day %} +
+ +
+ {% endif %} +
+
+ +
+
+ +

Classement appels autorisés

+ + {% if top_permitted %} + + + + + + + + + {% for item in top_permitted %} + + + + {% endfor %} + +
NuméroNombre
+ {{ item.phone_no }} - +
+ {{ item.name }} +
+ {{ item.count }} +
+ {% endif %} +
+
+ +

Classement appels bloqués

+ + {% if top_blocked %} + + + + + + + + + {% for item in top_blocked %} + + + + {% endfor %} + +
NuméroNombre
+ {{ item.phone_no }} - +
+ {{ item.name }} +
+ {{ item.count }} +
+ {% endif %} +
+
+
+
+
+{% endblock %} + + +{% block js %} + + + +{% endblock %} diff --git a/callattendant/userinterface/templates/fr-FR/messages.html b/callattendant/userinterface/templates/fr-FR/messages.html new file mode 100644 index 0000000..4ccd711 --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/messages.html @@ -0,0 +1,79 @@ +{% extends "base.html" %} + +{% block title %}Messages{% endblock %} + +{% block content %} +
+

Messages vocaux + {% if total_unplayed > 0 %} + {{ total_unplayed }} Nouveau + {% endif %} + + +

+ + {% if total_messages == 0 %} +

None

+ {% else %} + {{ pagination.links }} + + + + + + + + + + {% for item in messages %} + + + + + + {% endfor %} + +
Date/HeureMessage
+ {{ item.time }} +
+ {{ item.date }} + {% if item.msg_played == 0 %} + Nouveau + {% endif %} +
+ +
+ de {{ item.phone_no }} - {{ item.name }} +
+ +
+ {{ pagination.links }} + {% endif %} +
+{% endblock %} + +{% block js %} + +{% endblock %} diff --git a/callattendant/userinterface/templates/fr-FR/modal_play_message.html b/callattendant/userinterface/templates/fr-FR/modal_play_message.html new file mode 100644 index 0000000..8681680 --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/modal_play_message.html @@ -0,0 +1,26 @@ + + diff --git a/callattendant/userinterface/templates/fr-FR/play_message.html b/callattendant/userinterface/templates/fr-FR/play_message.html new file mode 100644 index 0000000..874173e --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/play_message.html @@ -0,0 +1,26 @@ + + diff --git a/callattendant/userinterface/templates/fr-FR/settings.html b/callattendant/userinterface/templates/fr-FR/settings.html new file mode 100644 index 0000000..ecc2f34 --- /dev/null +++ b/callattendant/userinterface/templates/fr-FR/settings.html @@ -0,0 +1,21 @@ +{% extends "base.html" %} + +{% block title %}Settings{% endblock %} + +{% block stylesheet %} + +{% endblock %} + +{% block content %} +
+

Settings

+ +
Current Configuration
+ {{ curr_settings|safe }} + +
Config File: {{ config_file }}
+ {{ file_settings|safe }} + +
+{% endblock %} +