You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Mar 15, 2021. It is now read-only.
Copy file name to clipboardexpand all lines: phishing/jinja2/phishing/dashboard_parts/landing_page.html
+14-2
Original file line number
Diff line number
Diff line change
@@ -2,14 +2,26 @@
2
2
<divclass="col-md-3">
3
3
<h3>{% trans %}Landing page open{% endtrans %}</h3>
4
4
<canvasid="landing_page_open_pie"></canvas>
5
-
<p><b>{% trans %}Total open{% endtrans %}:</b> {{ graphs.landing_page_open_pie.opened or 0 }}</p>
5
+
{% if graphs.landing_page_open_opened_tracker_count %}
6
+
<ptitle="{% trans %}This number is the sum of ALL the landingpage opened. One people can open one the landingpage several times{% endtrans %}">
7
+
<b>{% trans %}Total opened{% endtrans %}:</b> {{ graphs.landing_page_open_opened_tracker_count }}
8
+
</p>
9
+
{% else %}
10
+
<b>{% trans %}Not opened{% endtrans %}</b>
11
+
{% endif %}
6
12
</div>
7
13
{% endif %}
8
14
9
15
{% if graphs.landing_page_post_pie %}
10
16
<divclass="col-md-3">
11
17
<h3>{% trans %}Landing page post{% endtrans %}</h3>
12
18
<canvasid="landing_page_post_pie"></canvas>
13
-
<p><b>{% trans %}Total POST{% endtrans %}:</b> {{ graphs.landing_page_post_pie.yes or 0 }}</p>
19
+
{% if graphs.landing_page_post_yes_tracker_count %}
20
+
<ptitle="{% trans %}This number is the sum of ALL the post on the landingpage opened. One people can post multiple times on the landingpage.{% endtrans %}">
21
+
<b>{% trans %}Total posted{% endtrans %}:</b> {{ graphs.landing_page_post_yes_tracker_count }}
0 commit comments