diff --git a/templates/fit4otsecurity/survey/finishedSurvey.html b/templates/fit4otsecurity/survey/finishedSurvey.html new file mode 100644 index 00000000..e7769180 --- /dev/null +++ b/templates/fit4otsecurity/survey/finishedSurvey.html @@ -0,0 +1,230 @@ +{% extends 'survey/base.html' %} + +{% load apptags %} + +{% load bootstrap4 %} +{% load i18n %} +{% load static %} + +{% block bootstrap4_extra_head %} +{{ block.super }} + + + + + + + + +{% endblock %} + +{% block title %}{{ title }}{% endblock %} + +{% block content %} +
+
+

{{ _('Summary') }}:

+
+ {% block finished_survey_description %} +

+ {% blocktranslate trimmed %} + This is the list of recommendations to improve the information + security maturity in your company, provided that your answers + did correctly reflect the state in your company. + Also keep in mind that it is a self-assessment and only + scratches the surface of the information security maturity level + and thus, we are not liable for the results of this survey. + {% endblocktranslate %} +

+ {% endblock %} + {% if custom.modules.requestTraining and user.get_country_code == 'LU' and txtscore < custom.minimal_acceptable_score %} +

+ {% blocktranslate with score=string_score|add:'/100' trimmed %} + Based on your score {{ score }}, the NC3 Diagnostic + is not available for your organization at this moment. + We recommend you improve the information security maturity + level by implementing the recommendations listed below. + If you need any information security training to + raise awareness in your company, do not hesitate to + {% endblocktranslate %} + {% include 'survey/requestTrainingLink.html' with type='link' %} +

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

+ {% blocktranslate trimmed with bonus=bonus_score %} + You have scored an additional {{ bonus }} % of bonus points for adherence to best practices. + {% endblocktranslate %} +

+ {% endif %} + + {% if custom.modules.requestDiagnostic and user.get_country_code == 'LU' and txtscore >= custom.minimal_acceptable_score %} + {% block finished_survey_diagnostic %} +

{{ _('About the NC3 Diagnostic') }}:

+

+ {% blocktranslate trimmed %} + The NC3 Diagnostic is a service which analyses the company maturity + in the information security depending on company's requirements. + The analysis duration can take approximately 2 hours. + A consultant from NC3 will come to your company's premises, + and ask around 30 questions concerning your information security, + mostly organizational questions and possibly some technical questions. + You will receive a detailed report which will contain a maturity estimation + as well as recommendations to enhance the information security maturity. + {% endblocktranslate %} +

+

+ {% blocktranslate trimmed %} + The NC3 Diagnostic is available for all the companies + located in Luxembourg and free of charge. + {% endblocktranslate %} +

+ {% endblock %} + {% endif %} +
+ {% if custom.modules.reportDownload %} +
+
+
+ {% if custom.modules.displayResults %} +

+ {% if txtscore < 50 %} + {{ string_score }} + {% elif txtscore < custom.minimal_acceptable_score %} + {{ string_score }} + {% else %} + {{ string_score }} + {% endif %} + /100 +

+ {% endif %} + {% if user.get_country_code == 'LU' %} + {% if txtscore >= custom.minimal_acceptable_score and custom.modules.requestDiagnostic %} +
+ {% include 'survey/requestDiagnosticLink.html' with type='button' %} +
+ {% endif %} + {% if custom.modules.requestTraining %} +
+ {% include 'survey/requestTrainingLink.html' with type='button' %} +
+ {% endif %} + {% endif %} +
+

{{ _('Report') }}:

+
+ DOC ICON +
+
+ + + + {% if custom.modules.reportEmail %} + + {% endif %} +
+
+
+ + {% endif %} + {% if custom.modules.displayResults %} +
+

+ {{ _('Score by category') }} +

+ +
+ + {% endif %} +
+ {% for category, items in recommendations.items %} +

{{ category | safe }}

+
    + {% with False as isSubList %} + {% for recommendation in items %} +
  1. {{ recommendation | safe }}
  2. + + {% if recommendation|slice:"-1:" == ":" %} +
      + {% update_variable True as isSubList %} + {% endif %} + {% if forloop.last and isSubList %} +
    + {% endif %} + + {% endfor %} + {% endwith %} +
+ {% endfor %} +
+
+ +
+
+ +
+ + +{% include 'survey/continue.html' %} +{% include 'survey/leaveSurvey.html' %} +{% include 'survey/sendReportEmail.html' %} + +{% endblock %}