benoit@7: {# benoit@7: # Description: benoit@7: # Web Template used in Farol Design benoit@7: # benoit@7: # Authors: benoit@7: # BenoƮt Allard benoit@7: # benoit@7: # Copyright: benoit@7: # Copyright (C) 2014 Greenbone Networks GmbH benoit@7: # benoit@7: # This program is free software; you can redistribute it and/or benoit@7: # modify it under the terms of the GNU General Public License benoit@7: # as published by the Free Software Foundation; either version 2 benoit@7: # of the License, or (at your option) any later version. benoit@7: # benoit@7: # This program is distributed in the hope that it will be useful, benoit@7: # but WITHOUT ANY WARRANTY; without even the implied warranty of benoit@7: # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the benoit@7: # GNU General Public License for more details. benoit@7: # benoit@7: # You should have received a copy of the GNU General Public License benoit@7: # along with this program; if not, write to the Free Software benoit@7: # Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. benoit@7: -#} benoit@7: benoit@7: {% extends "base.j2" %} benoit@125: {% from "macros.j2" import panel %} benoit@125: benoit@125: {% macro progress_label(progress) -%} benoit@125: {{ progress }}% benoit@125: {%- endmacro %} benoit@7: benoit@7: {% block title %}Welcome{% endblock %} benoit@7: benoit@7: {% block content %} benoit@125:
benoit@125:

Farol The Security Advisory Management Platform

benoit@125: benoit@125:

This web platform offers to review, create, edit and transform security advisories supporting various input and output formats. During your session the advisory is stored in a cache from which you should save your changes to your local file system.

benoit@7:
benoit@7:
benoit@125:
Security Advisories interactions
benoit@125:
benoit@125: {% call panel(heading="Platform status", collapsible=False) %} benoit@125:
{{ version }}Farol version:
benoit@125: {% endcall %} benoit@125: {% call panel(heading="Supported input formats", collapsible=False) %} benoit@125: {% for format, progress in imports %} benoit@125:
{{ format }} {{ progress_label(progress) }}
benoit@125: {% endfor %} benoit@125: {% endcall %} benoit@125: {% call panel(heading="Supported output formats", collapsible=False) %} benoit@125: {% for format, progress in exports %} benoit@125:
{{ format }} {{ progress_label(progress) }}
benoit@125: {% endfor %} benoit@125: {% endcall %} benoit@125: {% call panel(heading="Supported use cases", collapsible=False) %} benoit@125: {% for use_case, progress in use_cases %} benoit@125:
{{ progress_label(progress) }}{{ use_case }}
benoit@125: {% endfor %} benoit@125: {% endcall %} benoit@7:
benoit@7:
benoit@7: {% endblock %}