diff --git a/README.md b/README.md index e202e37..a6b9a50 100644 --- a/README.md +++ b/README.md @@ -17,12 +17,12 @@ PeTeReport (**Pe**n**Te**st **Report**) is written in Django and Python 3 with t ## Documentation -![Documentation](https://1modm.github.io/petereport/ "Documentation") +[Documentation](https://1modm.github.io/petereport/) ## Installation and deployment - [x] [Docker](https://1modm.github.io/petereport/docker/) -- [x] [Django](https://1modm.github.io/petereport//django/) +- [x] [Django](https://1modm.github.io/petereport/django/) ## Features @@ -49,8 +49,11 @@ PeTeReport (**Pe**n**Te**st **Report**) is written in Django and Python 3 with t ## Demo +[Demo](http://1modm.pythonanywhere.com/) **admin/P3t3r3p0rt** + ![Demo](images/demo.gif "Demo") + ## Sample Reports - [PDF Sample](https://github.com/1modm/petereport/raw/main/sample_reports/PEN-PDF_Offensive_Security_Network_202108181118.pdf "PDF Sample") diff --git a/django/clean.py b/app/clean.py similarity index 100% rename from django/clean.py rename to app/clean.py diff --git a/django/config/Dockerfile b/app/config/Dockerfile similarity index 100% rename from django/config/Dockerfile rename to app/config/Dockerfile diff --git a/django/config/cwe-list.json b/app/config/cwe-list.json similarity index 100% rename from django/config/cwe-list.json rename to app/config/cwe-list.json diff --git a/django/config/petereport_config.py b/app/config/petereport_config.py similarity index 100% rename from django/config/petereport_config.py rename to app/config/petereport_config.py diff --git a/django/config/startup.py b/app/config/startup.py similarity index 100% rename from django/config/startup.py rename to app/config/startup.py diff --git a/django/manage.py b/app/manage.py similarity index 100% rename from django/manage.py rename to app/manage.py diff --git a/django/petereport/__init__.py b/app/petereport/__init__.py similarity index 100% rename from django/petereport/__init__.py rename to app/petereport/__init__.py diff --git a/django/petereport/asgi.py b/app/petereport/asgi.py similarity index 100% rename from django/petereport/asgi.py rename to app/petereport/asgi.py diff --git a/django/petereport/settings.py b/app/petereport/settings.py similarity index 100% rename from django/petereport/settings.py rename to app/petereport/settings.py diff --git a/django/petereport/static/admin/css/autocomplete.css b/app/petereport/static/admin/css/autocomplete.css similarity index 100% rename from django/petereport/static/admin/css/autocomplete.css rename to app/petereport/static/admin/css/autocomplete.css diff --git a/django/petereport/static/admin/css/base.css b/app/petereport/static/admin/css/base.css similarity index 100% rename from django/petereport/static/admin/css/base.css rename to app/petereport/static/admin/css/base.css diff --git a/django/petereport/static/admin/css/changelists.css b/app/petereport/static/admin/css/changelists.css similarity index 100% rename from django/petereport/static/admin/css/changelists.css rename to app/petereport/static/admin/css/changelists.css diff --git a/django/petereport/static/admin/css/dashboard.css b/app/petereport/static/admin/css/dashboard.css similarity index 100% rename from django/petereport/static/admin/css/dashboard.css rename to app/petereport/static/admin/css/dashboard.css diff --git a/django/petereport/static/admin/css/fonts.css b/app/petereport/static/admin/css/fonts.css similarity index 100% rename from django/petereport/static/admin/css/fonts.css rename to app/petereport/static/admin/css/fonts.css diff --git a/django/petereport/static/admin/css/forms.css b/app/petereport/static/admin/css/forms.css similarity index 100% rename from django/petereport/static/admin/css/forms.css rename to app/petereport/static/admin/css/forms.css diff --git a/django/petereport/static/admin/css/login.css b/app/petereport/static/admin/css/login.css similarity index 100% rename from django/petereport/static/admin/css/login.css rename to app/petereport/static/admin/css/login.css diff --git a/django/petereport/static/admin/css/nav_sidebar.css b/app/petereport/static/admin/css/nav_sidebar.css similarity index 100% rename from django/petereport/static/admin/css/nav_sidebar.css rename to app/petereport/static/admin/css/nav_sidebar.css diff --git a/django/petereport/static/admin/css/responsive.css b/app/petereport/static/admin/css/responsive.css similarity index 100% rename from django/petereport/static/admin/css/responsive.css rename to app/petereport/static/admin/css/responsive.css diff --git a/django/petereport/static/admin/css/responsive_rtl.css b/app/petereport/static/admin/css/responsive_rtl.css similarity index 100% rename from django/petereport/static/admin/css/responsive_rtl.css rename to app/petereport/static/admin/css/responsive_rtl.css diff --git a/django/petereport/static/admin/css/rtl.css b/app/petereport/static/admin/css/rtl.css similarity index 100% rename from django/petereport/static/admin/css/rtl.css rename to app/petereport/static/admin/css/rtl.css diff --git a/django/petereport/static/admin/css/vendor/select2/LICENSE-SELECT2.md b/app/petereport/static/admin/css/vendor/select2/LICENSE-SELECT2.md similarity index 100% rename from django/petereport/static/admin/css/vendor/select2/LICENSE-SELECT2.md rename to app/petereport/static/admin/css/vendor/select2/LICENSE-SELECT2.md diff --git a/django/petereport/static/admin/css/vendor/select2/select2.css b/app/petereport/static/admin/css/vendor/select2/select2.css similarity index 100% rename from django/petereport/static/admin/css/vendor/select2/select2.css rename to app/petereport/static/admin/css/vendor/select2/select2.css diff --git a/django/petereport/static/admin/css/vendor/select2/select2.min.css b/app/petereport/static/admin/css/vendor/select2/select2.min.css similarity index 100% rename from django/petereport/static/admin/css/vendor/select2/select2.min.css rename to app/petereport/static/admin/css/vendor/select2/select2.min.css diff --git a/django/petereport/static/admin/css/widgets.css b/app/petereport/static/admin/css/widgets.css similarity index 100% rename from django/petereport/static/admin/css/widgets.css rename to app/petereport/static/admin/css/widgets.css diff --git a/django/petereport/static/admin/fonts/LICENSE.txt b/app/petereport/static/admin/fonts/LICENSE.txt similarity index 100% rename from django/petereport/static/admin/fonts/LICENSE.txt rename to app/petereport/static/admin/fonts/LICENSE.txt diff --git a/django/petereport/static/admin/fonts/README.txt b/app/petereport/static/admin/fonts/README.txt similarity index 100% rename from django/petereport/static/admin/fonts/README.txt rename to app/petereport/static/admin/fonts/README.txt diff --git a/django/petereport/static/admin/fonts/Roboto-Bold-webfont.woff b/app/petereport/static/admin/fonts/Roboto-Bold-webfont.woff similarity index 100% rename from django/petereport/static/admin/fonts/Roboto-Bold-webfont.woff rename to app/petereport/static/admin/fonts/Roboto-Bold-webfont.woff diff --git a/django/petereport/static/admin/fonts/Roboto-Light-webfont.woff b/app/petereport/static/admin/fonts/Roboto-Light-webfont.woff similarity index 100% rename from django/petereport/static/admin/fonts/Roboto-Light-webfont.woff rename to app/petereport/static/admin/fonts/Roboto-Light-webfont.woff diff --git a/django/petereport/static/admin/fonts/Roboto-Regular-webfont.woff b/app/petereport/static/admin/fonts/Roboto-Regular-webfont.woff similarity index 100% rename from django/petereport/static/admin/fonts/Roboto-Regular-webfont.woff rename to app/petereport/static/admin/fonts/Roboto-Regular-webfont.woff diff --git a/django/petereport/static/admin/img/LICENSE b/app/petereport/static/admin/img/LICENSE similarity index 100% rename from django/petereport/static/admin/img/LICENSE rename to app/petereport/static/admin/img/LICENSE diff --git a/django/petereport/static/admin/img/README.txt b/app/petereport/static/admin/img/README.txt similarity index 100% rename from django/petereport/static/admin/img/README.txt rename to app/petereport/static/admin/img/README.txt diff --git a/django/petereport/static/admin/img/calendar-icons.svg b/app/petereport/static/admin/img/calendar-icons.svg similarity index 100% rename from django/petereport/static/admin/img/calendar-icons.svg rename to app/petereport/static/admin/img/calendar-icons.svg diff --git a/django/petereport/static/admin/img/gis/move_vertex_off.svg b/app/petereport/static/admin/img/gis/move_vertex_off.svg similarity index 100% rename from django/petereport/static/admin/img/gis/move_vertex_off.svg rename to app/petereport/static/admin/img/gis/move_vertex_off.svg diff --git a/django/petereport/static/admin/img/gis/move_vertex_on.svg b/app/petereport/static/admin/img/gis/move_vertex_on.svg similarity index 100% rename from django/petereport/static/admin/img/gis/move_vertex_on.svg rename to app/petereport/static/admin/img/gis/move_vertex_on.svg diff --git a/django/petereport/static/admin/img/icon-addlink.svg b/app/petereport/static/admin/img/icon-addlink.svg similarity index 100% rename from django/petereport/static/admin/img/icon-addlink.svg rename to app/petereport/static/admin/img/icon-addlink.svg diff --git a/django/petereport/static/admin/img/icon-alert.svg b/app/petereport/static/admin/img/icon-alert.svg similarity index 100% rename from django/petereport/static/admin/img/icon-alert.svg rename to app/petereport/static/admin/img/icon-alert.svg diff --git a/django/petereport/static/admin/img/icon-calendar.svg b/app/petereport/static/admin/img/icon-calendar.svg similarity index 100% rename from django/petereport/static/admin/img/icon-calendar.svg rename to app/petereport/static/admin/img/icon-calendar.svg diff --git a/django/petereport/static/admin/img/icon-changelink.svg b/app/petereport/static/admin/img/icon-changelink.svg similarity index 100% rename from django/petereport/static/admin/img/icon-changelink.svg rename to app/petereport/static/admin/img/icon-changelink.svg diff --git a/django/petereport/static/admin/img/icon-clock.svg b/app/petereport/static/admin/img/icon-clock.svg similarity index 100% rename from django/petereport/static/admin/img/icon-clock.svg rename to app/petereport/static/admin/img/icon-clock.svg diff --git a/django/petereport/static/admin/img/icon-deletelink.svg b/app/petereport/static/admin/img/icon-deletelink.svg similarity index 100% rename from django/petereport/static/admin/img/icon-deletelink.svg rename to app/petereport/static/admin/img/icon-deletelink.svg diff --git a/django/petereport/static/admin/img/icon-no.svg b/app/petereport/static/admin/img/icon-no.svg similarity index 100% rename from django/petereport/static/admin/img/icon-no.svg rename to app/petereport/static/admin/img/icon-no.svg diff --git a/django/petereport/static/admin/img/icon-unknown-alt.svg b/app/petereport/static/admin/img/icon-unknown-alt.svg similarity index 100% rename from django/petereport/static/admin/img/icon-unknown-alt.svg rename to app/petereport/static/admin/img/icon-unknown-alt.svg diff --git a/django/petereport/static/admin/img/icon-unknown.svg b/app/petereport/static/admin/img/icon-unknown.svg similarity index 100% rename from django/petereport/static/admin/img/icon-unknown.svg rename to app/petereport/static/admin/img/icon-unknown.svg diff --git a/django/petereport/static/admin/img/icon-viewlink.svg b/app/petereport/static/admin/img/icon-viewlink.svg similarity index 100% rename from django/petereport/static/admin/img/icon-viewlink.svg rename to app/petereport/static/admin/img/icon-viewlink.svg diff --git a/django/petereport/static/admin/img/icon-yes.svg b/app/petereport/static/admin/img/icon-yes.svg similarity index 100% rename from django/petereport/static/admin/img/icon-yes.svg rename to app/petereport/static/admin/img/icon-yes.svg diff --git a/django/petereport/static/admin/img/inline-delete.svg b/app/petereport/static/admin/img/inline-delete.svg similarity index 100% rename from django/petereport/static/admin/img/inline-delete.svg rename to app/petereport/static/admin/img/inline-delete.svg diff --git a/django/petereport/static/admin/img/search.svg b/app/petereport/static/admin/img/search.svg similarity index 100% rename from django/petereport/static/admin/img/search.svg rename to app/petereport/static/admin/img/search.svg diff --git a/django/petereport/static/admin/img/selector-icons.svg b/app/petereport/static/admin/img/selector-icons.svg similarity index 100% rename from django/petereport/static/admin/img/selector-icons.svg rename to app/petereport/static/admin/img/selector-icons.svg diff --git a/django/petereport/static/admin/img/sorting-icons.svg b/app/petereport/static/admin/img/sorting-icons.svg similarity index 100% rename from django/petereport/static/admin/img/sorting-icons.svg rename to app/petereport/static/admin/img/sorting-icons.svg diff --git a/django/petereport/static/admin/img/tooltag-add.svg b/app/petereport/static/admin/img/tooltag-add.svg similarity index 100% rename from django/petereport/static/admin/img/tooltag-add.svg rename to app/petereport/static/admin/img/tooltag-add.svg diff --git a/django/petereport/static/admin/img/tooltag-arrowright.svg b/app/petereport/static/admin/img/tooltag-arrowright.svg similarity index 100% rename from django/petereport/static/admin/img/tooltag-arrowright.svg rename to app/petereport/static/admin/img/tooltag-arrowright.svg diff --git a/django/petereport/static/admin/js/SelectBox.js b/app/petereport/static/admin/js/SelectBox.js similarity index 100% rename from django/petereport/static/admin/js/SelectBox.js rename to app/petereport/static/admin/js/SelectBox.js diff --git a/django/petereport/static/admin/js/SelectFilter2.js b/app/petereport/static/admin/js/SelectFilter2.js similarity index 100% rename from django/petereport/static/admin/js/SelectFilter2.js rename to app/petereport/static/admin/js/SelectFilter2.js diff --git a/django/petereport/static/admin/js/actions.js b/app/petereport/static/admin/js/actions.js similarity index 100% rename from django/petereport/static/admin/js/actions.js rename to app/petereport/static/admin/js/actions.js diff --git a/django/petereport/static/admin/js/admin/DateTimeShortcuts.js b/app/petereport/static/admin/js/admin/DateTimeShortcuts.js similarity index 100% rename from django/petereport/static/admin/js/admin/DateTimeShortcuts.js rename to app/petereport/static/admin/js/admin/DateTimeShortcuts.js diff --git a/django/petereport/static/admin/js/admin/RelatedObjectLookups.js b/app/petereport/static/admin/js/admin/RelatedObjectLookups.js similarity index 100% rename from django/petereport/static/admin/js/admin/RelatedObjectLookups.js rename to app/petereport/static/admin/js/admin/RelatedObjectLookups.js diff --git a/django/petereport/static/admin/js/autocomplete.js b/app/petereport/static/admin/js/autocomplete.js similarity index 100% rename from django/petereport/static/admin/js/autocomplete.js rename to app/petereport/static/admin/js/autocomplete.js diff --git a/django/petereport/static/admin/js/calendar.js b/app/petereport/static/admin/js/calendar.js similarity index 100% rename from django/petereport/static/admin/js/calendar.js rename to app/petereport/static/admin/js/calendar.js diff --git a/django/petereport/static/admin/js/cancel.js b/app/petereport/static/admin/js/cancel.js similarity index 100% rename from django/petereport/static/admin/js/cancel.js rename to app/petereport/static/admin/js/cancel.js diff --git a/django/petereport/static/admin/js/change_form.js b/app/petereport/static/admin/js/change_form.js similarity index 100% rename from django/petereport/static/admin/js/change_form.js rename to app/petereport/static/admin/js/change_form.js diff --git a/django/petereport/static/admin/js/collapse.js b/app/petereport/static/admin/js/collapse.js similarity index 100% rename from django/petereport/static/admin/js/collapse.js rename to app/petereport/static/admin/js/collapse.js diff --git a/django/petereport/static/admin/js/core.js b/app/petereport/static/admin/js/core.js similarity index 100% rename from django/petereport/static/admin/js/core.js rename to app/petereport/static/admin/js/core.js diff --git a/django/petereport/static/admin/js/inlines.js b/app/petereport/static/admin/js/inlines.js similarity index 100% rename from django/petereport/static/admin/js/inlines.js rename to app/petereport/static/admin/js/inlines.js diff --git a/django/petereport/static/admin/js/jquery.init.js b/app/petereport/static/admin/js/jquery.init.js similarity index 100% rename from django/petereport/static/admin/js/jquery.init.js rename to app/petereport/static/admin/js/jquery.init.js diff --git a/django/petereport/static/admin/js/nav_sidebar.js b/app/petereport/static/admin/js/nav_sidebar.js similarity index 100% rename from django/petereport/static/admin/js/nav_sidebar.js rename to app/petereport/static/admin/js/nav_sidebar.js diff --git a/django/petereport/static/admin/js/popup_response.js b/app/petereport/static/admin/js/popup_response.js similarity index 100% rename from django/petereport/static/admin/js/popup_response.js rename to app/petereport/static/admin/js/popup_response.js diff --git a/django/petereport/static/admin/js/prepopulate.js b/app/petereport/static/admin/js/prepopulate.js similarity index 100% rename from django/petereport/static/admin/js/prepopulate.js rename to app/petereport/static/admin/js/prepopulate.js diff --git a/django/petereport/static/admin/js/prepopulate_init.js b/app/petereport/static/admin/js/prepopulate_init.js similarity index 100% rename from django/petereport/static/admin/js/prepopulate_init.js rename to app/petereport/static/admin/js/prepopulate_init.js diff --git a/django/petereport/static/admin/js/urlify.js b/app/petereport/static/admin/js/urlify.js similarity index 100% rename from django/petereport/static/admin/js/urlify.js rename to app/petereport/static/admin/js/urlify.js diff --git a/django/petereport/static/admin/js/vendor/jquery/LICENSE.txt b/app/petereport/static/admin/js/vendor/jquery/LICENSE.txt similarity index 100% rename from django/petereport/static/admin/js/vendor/jquery/LICENSE.txt rename to app/petereport/static/admin/js/vendor/jquery/LICENSE.txt diff --git a/django/petereport/static/admin/js/vendor/jquery/jquery.js b/app/petereport/static/admin/js/vendor/jquery/jquery.js similarity index 100% rename from django/petereport/static/admin/js/vendor/jquery/jquery.js rename to app/petereport/static/admin/js/vendor/jquery/jquery.js diff --git a/django/petereport/static/admin/js/vendor/jquery/jquery.min.js b/app/petereport/static/admin/js/vendor/jquery/jquery.min.js similarity index 100% rename from django/petereport/static/admin/js/vendor/jquery/jquery.min.js rename to app/petereport/static/admin/js/vendor/jquery/jquery.min.js diff --git a/django/petereport/static/admin/js/vendor/select2/LICENSE.md b/app/petereport/static/admin/js/vendor/select2/LICENSE.md similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/LICENSE.md rename to app/petereport/static/admin/js/vendor/select2/LICENSE.md diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/af.js b/app/petereport/static/admin/js/vendor/select2/i18n/af.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/af.js rename to app/petereport/static/admin/js/vendor/select2/i18n/af.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ar.js b/app/petereport/static/admin/js/vendor/select2/i18n/ar.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ar.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ar.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/az.js b/app/petereport/static/admin/js/vendor/select2/i18n/az.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/az.js rename to app/petereport/static/admin/js/vendor/select2/i18n/az.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/bg.js b/app/petereport/static/admin/js/vendor/select2/i18n/bg.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/bg.js rename to app/petereport/static/admin/js/vendor/select2/i18n/bg.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/bn.js b/app/petereport/static/admin/js/vendor/select2/i18n/bn.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/bn.js rename to app/petereport/static/admin/js/vendor/select2/i18n/bn.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/bs.js b/app/petereport/static/admin/js/vendor/select2/i18n/bs.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/bs.js rename to app/petereport/static/admin/js/vendor/select2/i18n/bs.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ca.js b/app/petereport/static/admin/js/vendor/select2/i18n/ca.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ca.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ca.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/cs.js b/app/petereport/static/admin/js/vendor/select2/i18n/cs.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/cs.js rename to app/petereport/static/admin/js/vendor/select2/i18n/cs.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/da.js b/app/petereport/static/admin/js/vendor/select2/i18n/da.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/da.js rename to app/petereport/static/admin/js/vendor/select2/i18n/da.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/de.js b/app/petereport/static/admin/js/vendor/select2/i18n/de.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/de.js rename to app/petereport/static/admin/js/vendor/select2/i18n/de.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/dsb.js b/app/petereport/static/admin/js/vendor/select2/i18n/dsb.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/dsb.js rename to app/petereport/static/admin/js/vendor/select2/i18n/dsb.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/el.js b/app/petereport/static/admin/js/vendor/select2/i18n/el.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/el.js rename to app/petereport/static/admin/js/vendor/select2/i18n/el.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/en.js b/app/petereport/static/admin/js/vendor/select2/i18n/en.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/en.js rename to app/petereport/static/admin/js/vendor/select2/i18n/en.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/es.js b/app/petereport/static/admin/js/vendor/select2/i18n/es.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/es.js rename to app/petereport/static/admin/js/vendor/select2/i18n/es.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/et.js b/app/petereport/static/admin/js/vendor/select2/i18n/et.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/et.js rename to app/petereport/static/admin/js/vendor/select2/i18n/et.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/eu.js b/app/petereport/static/admin/js/vendor/select2/i18n/eu.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/eu.js rename to app/petereport/static/admin/js/vendor/select2/i18n/eu.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/fa.js b/app/petereport/static/admin/js/vendor/select2/i18n/fa.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/fa.js rename to app/petereport/static/admin/js/vendor/select2/i18n/fa.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/fi.js b/app/petereport/static/admin/js/vendor/select2/i18n/fi.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/fi.js rename to app/petereport/static/admin/js/vendor/select2/i18n/fi.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/fr.js b/app/petereport/static/admin/js/vendor/select2/i18n/fr.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/fr.js rename to app/petereport/static/admin/js/vendor/select2/i18n/fr.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/gl.js b/app/petereport/static/admin/js/vendor/select2/i18n/gl.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/gl.js rename to app/petereport/static/admin/js/vendor/select2/i18n/gl.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/he.js b/app/petereport/static/admin/js/vendor/select2/i18n/he.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/he.js rename to app/petereport/static/admin/js/vendor/select2/i18n/he.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/hi.js b/app/petereport/static/admin/js/vendor/select2/i18n/hi.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/hi.js rename to app/petereport/static/admin/js/vendor/select2/i18n/hi.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/hr.js b/app/petereport/static/admin/js/vendor/select2/i18n/hr.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/hr.js rename to app/petereport/static/admin/js/vendor/select2/i18n/hr.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/hsb.js b/app/petereport/static/admin/js/vendor/select2/i18n/hsb.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/hsb.js rename to app/petereport/static/admin/js/vendor/select2/i18n/hsb.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/hu.js b/app/petereport/static/admin/js/vendor/select2/i18n/hu.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/hu.js rename to app/petereport/static/admin/js/vendor/select2/i18n/hu.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/hy.js b/app/petereport/static/admin/js/vendor/select2/i18n/hy.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/hy.js rename to app/petereport/static/admin/js/vendor/select2/i18n/hy.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/id.js b/app/petereport/static/admin/js/vendor/select2/i18n/id.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/id.js rename to app/petereport/static/admin/js/vendor/select2/i18n/id.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/is.js b/app/petereport/static/admin/js/vendor/select2/i18n/is.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/is.js rename to app/petereport/static/admin/js/vendor/select2/i18n/is.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/it.js b/app/petereport/static/admin/js/vendor/select2/i18n/it.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/it.js rename to app/petereport/static/admin/js/vendor/select2/i18n/it.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ja.js b/app/petereport/static/admin/js/vendor/select2/i18n/ja.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ja.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ja.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ka.js b/app/petereport/static/admin/js/vendor/select2/i18n/ka.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ka.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ka.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/km.js b/app/petereport/static/admin/js/vendor/select2/i18n/km.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/km.js rename to app/petereport/static/admin/js/vendor/select2/i18n/km.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ko.js b/app/petereport/static/admin/js/vendor/select2/i18n/ko.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ko.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ko.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/lt.js b/app/petereport/static/admin/js/vendor/select2/i18n/lt.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/lt.js rename to app/petereport/static/admin/js/vendor/select2/i18n/lt.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/lv.js b/app/petereport/static/admin/js/vendor/select2/i18n/lv.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/lv.js rename to app/petereport/static/admin/js/vendor/select2/i18n/lv.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/mk.js b/app/petereport/static/admin/js/vendor/select2/i18n/mk.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/mk.js rename to app/petereport/static/admin/js/vendor/select2/i18n/mk.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ms.js b/app/petereport/static/admin/js/vendor/select2/i18n/ms.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ms.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ms.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/nb.js b/app/petereport/static/admin/js/vendor/select2/i18n/nb.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/nb.js rename to app/petereport/static/admin/js/vendor/select2/i18n/nb.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ne.js b/app/petereport/static/admin/js/vendor/select2/i18n/ne.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ne.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ne.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/nl.js b/app/petereport/static/admin/js/vendor/select2/i18n/nl.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/nl.js rename to app/petereport/static/admin/js/vendor/select2/i18n/nl.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/pl.js b/app/petereport/static/admin/js/vendor/select2/i18n/pl.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/pl.js rename to app/petereport/static/admin/js/vendor/select2/i18n/pl.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ps.js b/app/petereport/static/admin/js/vendor/select2/i18n/ps.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ps.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ps.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/pt-BR.js b/app/petereport/static/admin/js/vendor/select2/i18n/pt-BR.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/pt-BR.js rename to app/petereport/static/admin/js/vendor/select2/i18n/pt-BR.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/pt.js b/app/petereport/static/admin/js/vendor/select2/i18n/pt.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/pt.js rename to app/petereport/static/admin/js/vendor/select2/i18n/pt.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ro.js b/app/petereport/static/admin/js/vendor/select2/i18n/ro.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ro.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ro.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/ru.js b/app/petereport/static/admin/js/vendor/select2/i18n/ru.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/ru.js rename to app/petereport/static/admin/js/vendor/select2/i18n/ru.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/sk.js b/app/petereport/static/admin/js/vendor/select2/i18n/sk.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/sk.js rename to app/petereport/static/admin/js/vendor/select2/i18n/sk.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/sl.js b/app/petereport/static/admin/js/vendor/select2/i18n/sl.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/sl.js rename to app/petereport/static/admin/js/vendor/select2/i18n/sl.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/sq.js b/app/petereport/static/admin/js/vendor/select2/i18n/sq.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/sq.js rename to app/petereport/static/admin/js/vendor/select2/i18n/sq.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/sr-Cyrl.js b/app/petereport/static/admin/js/vendor/select2/i18n/sr-Cyrl.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/sr-Cyrl.js rename to app/petereport/static/admin/js/vendor/select2/i18n/sr-Cyrl.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/sr.js b/app/petereport/static/admin/js/vendor/select2/i18n/sr.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/sr.js rename to app/petereport/static/admin/js/vendor/select2/i18n/sr.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/sv.js b/app/petereport/static/admin/js/vendor/select2/i18n/sv.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/sv.js rename to app/petereport/static/admin/js/vendor/select2/i18n/sv.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/th.js b/app/petereport/static/admin/js/vendor/select2/i18n/th.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/th.js rename to app/petereport/static/admin/js/vendor/select2/i18n/th.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/tk.js b/app/petereport/static/admin/js/vendor/select2/i18n/tk.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/tk.js rename to app/petereport/static/admin/js/vendor/select2/i18n/tk.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/tr.js b/app/petereport/static/admin/js/vendor/select2/i18n/tr.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/tr.js rename to app/petereport/static/admin/js/vendor/select2/i18n/tr.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/uk.js b/app/petereport/static/admin/js/vendor/select2/i18n/uk.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/uk.js rename to app/petereport/static/admin/js/vendor/select2/i18n/uk.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/vi.js b/app/petereport/static/admin/js/vendor/select2/i18n/vi.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/vi.js rename to app/petereport/static/admin/js/vendor/select2/i18n/vi.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/zh-CN.js b/app/petereport/static/admin/js/vendor/select2/i18n/zh-CN.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/zh-CN.js rename to app/petereport/static/admin/js/vendor/select2/i18n/zh-CN.js diff --git a/django/petereport/static/admin/js/vendor/select2/i18n/zh-TW.js b/app/petereport/static/admin/js/vendor/select2/i18n/zh-TW.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/i18n/zh-TW.js rename to app/petereport/static/admin/js/vendor/select2/i18n/zh-TW.js diff --git a/django/petereport/static/admin/js/vendor/select2/select2.full.js b/app/petereport/static/admin/js/vendor/select2/select2.full.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/select2.full.js rename to app/petereport/static/admin/js/vendor/select2/select2.full.js diff --git a/django/petereport/static/admin/js/vendor/select2/select2.full.min.js b/app/petereport/static/admin/js/vendor/select2/select2.full.min.js similarity index 100% rename from django/petereport/static/admin/js/vendor/select2/select2.full.min.js rename to app/petereport/static/admin/js/vendor/select2/select2.full.min.js diff --git a/django/petereport/static/admin/js/vendor/xregexp/LICENSE.txt b/app/petereport/static/admin/js/vendor/xregexp/LICENSE.txt similarity index 100% rename from django/petereport/static/admin/js/vendor/xregexp/LICENSE.txt rename to app/petereport/static/admin/js/vendor/xregexp/LICENSE.txt diff --git a/django/petereport/static/admin/js/vendor/xregexp/xregexp.js b/app/petereport/static/admin/js/vendor/xregexp/xregexp.js similarity index 100% rename from django/petereport/static/admin/js/vendor/xregexp/xregexp.js rename to app/petereport/static/admin/js/vendor/xregexp/xregexp.js diff --git a/django/petereport/static/admin/js/vendor/xregexp/xregexp.min.js b/app/petereport/static/admin/js/vendor/xregexp/xregexp.min.js similarity index 100% rename from django/petereport/static/admin/js/vendor/xregexp/xregexp.min.js rename to app/petereport/static/admin/js/vendor/xregexp/xregexp.min.js diff --git a/django/petereport/static/cvsscalc30.js b/app/petereport/static/cvsscalc30.js similarity index 100% rename from django/petereport/static/cvsscalc30.js rename to app/petereport/static/cvsscalc30.js diff --git a/django/petereport/static/cvsscalc30_helptext.js b/app/petereport/static/cvsscalc30_helptext.js similarity index 100% rename from django/petereport/static/cvsscalc30_helptext.js rename to app/petereport/static/cvsscalc30_helptext.js diff --git a/django/petereport/static/deciduous/deciduous.js b/app/petereport/static/deciduous/deciduous.js similarity index 100% rename from django/petereport/static/deciduous/deciduous.js rename to app/petereport/static/deciduous/deciduous.js diff --git a/django/petereport/static/dist/css/adminlte.css b/app/petereport/static/dist/css/adminlte.css similarity index 100% rename from django/petereport/static/dist/css/adminlte.css rename to app/petereport/static/dist/css/adminlte.css diff --git a/django/petereport/static/dist/css/adminlte.css.map b/app/petereport/static/dist/css/adminlte.css.map similarity index 100% rename from django/petereport/static/dist/css/adminlte.css.map rename to app/petereport/static/dist/css/adminlte.css.map diff --git a/django/petereport/static/dist/css/adminlte.min.css b/app/petereport/static/dist/css/adminlte.min.css similarity index 100% rename from django/petereport/static/dist/css/adminlte.min.css rename to app/petereport/static/dist/css/adminlte.min.css diff --git a/django/petereport/static/dist/css/adminlte.min.css.map b/app/petereport/static/dist/css/adminlte.min.css.map similarity index 100% rename from django/petereport/static/dist/css/adminlte.min.css.map rename to app/petereport/static/dist/css/adminlte.min.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.components.css b/app/petereport/static/dist/css/alt/adminlte.components.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.components.css rename to app/petereport/static/dist/css/alt/adminlte.components.css diff --git a/django/petereport/static/dist/css/alt/adminlte.components.css.map b/app/petereport/static/dist/css/alt/adminlte.components.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.components.css.map rename to app/petereport/static/dist/css/alt/adminlte.components.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.components.min.css b/app/petereport/static/dist/css/alt/adminlte.components.min.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.components.min.css rename to app/petereport/static/dist/css/alt/adminlte.components.min.css diff --git a/django/petereport/static/dist/css/alt/adminlte.components.min.css.map b/app/petereport/static/dist/css/alt/adminlte.components.min.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.components.min.css.map rename to app/petereport/static/dist/css/alt/adminlte.components.min.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.core.css b/app/petereport/static/dist/css/alt/adminlte.core.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.core.css rename to app/petereport/static/dist/css/alt/adminlte.core.css diff --git a/django/petereport/static/dist/css/alt/adminlte.core.css.map b/app/petereport/static/dist/css/alt/adminlte.core.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.core.css.map rename to app/petereport/static/dist/css/alt/adminlte.core.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.core.min.css b/app/petereport/static/dist/css/alt/adminlte.core.min.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.core.min.css rename to app/petereport/static/dist/css/alt/adminlte.core.min.css diff --git a/django/petereport/static/dist/css/alt/adminlte.core.min.css.map b/app/petereport/static/dist/css/alt/adminlte.core.min.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.core.min.css.map rename to app/petereport/static/dist/css/alt/adminlte.core.min.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.extra-components.css b/app/petereport/static/dist/css/alt/adminlte.extra-components.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.extra-components.css rename to app/petereport/static/dist/css/alt/adminlte.extra-components.css diff --git a/django/petereport/static/dist/css/alt/adminlte.extra-components.css.map b/app/petereport/static/dist/css/alt/adminlte.extra-components.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.extra-components.css.map rename to app/petereport/static/dist/css/alt/adminlte.extra-components.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.extra-components.min.css b/app/petereport/static/dist/css/alt/adminlte.extra-components.min.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.extra-components.min.css rename to app/petereport/static/dist/css/alt/adminlte.extra-components.min.css diff --git a/django/petereport/static/dist/css/alt/adminlte.extra-components.min.css.map b/app/petereport/static/dist/css/alt/adminlte.extra-components.min.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.extra-components.min.css.map rename to app/petereport/static/dist/css/alt/adminlte.extra-components.min.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.pages.css b/app/petereport/static/dist/css/alt/adminlte.pages.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.pages.css rename to app/petereport/static/dist/css/alt/adminlte.pages.css diff --git a/django/petereport/static/dist/css/alt/adminlte.pages.css.map b/app/petereport/static/dist/css/alt/adminlte.pages.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.pages.css.map rename to app/petereport/static/dist/css/alt/adminlte.pages.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.pages.min.css b/app/petereport/static/dist/css/alt/adminlte.pages.min.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.pages.min.css rename to app/petereport/static/dist/css/alt/adminlte.pages.min.css diff --git a/django/petereport/static/dist/css/alt/adminlte.pages.min.css.map b/app/petereport/static/dist/css/alt/adminlte.pages.min.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.pages.min.css.map rename to app/petereport/static/dist/css/alt/adminlte.pages.min.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.plugins.css b/app/petereport/static/dist/css/alt/adminlte.plugins.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.plugins.css rename to app/petereport/static/dist/css/alt/adminlte.plugins.css diff --git a/django/petereport/static/dist/css/alt/adminlte.plugins.css.map b/app/petereport/static/dist/css/alt/adminlte.plugins.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.plugins.css.map rename to app/petereport/static/dist/css/alt/adminlte.plugins.css.map diff --git a/django/petereport/static/dist/css/alt/adminlte.plugins.min.css b/app/petereport/static/dist/css/alt/adminlte.plugins.min.css similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.plugins.min.css rename to app/petereport/static/dist/css/alt/adminlte.plugins.min.css diff --git a/django/petereport/static/dist/css/alt/adminlte.plugins.min.css.map b/app/petereport/static/dist/css/alt/adminlte.plugins.min.css.map similarity index 100% rename from django/petereport/static/dist/css/alt/adminlte.plugins.min.css.map rename to app/petereport/static/dist/css/alt/adminlte.plugins.min.css.map diff --git a/django/petereport/static/dist/css/highlighter.css b/app/petereport/static/dist/css/highlighter.css similarity index 100% rename from django/petereport/static/dist/css/highlighter.css rename to app/petereport/static/dist/css/highlighter.css diff --git a/django/petereport/static/dist/js/.eslintrc.json b/app/petereport/static/dist/js/.eslintrc.json similarity index 100% rename from django/petereport/static/dist/js/.eslintrc.json rename to app/petereport/static/dist/js/.eslintrc.json diff --git a/django/petereport/static/dist/js/adminlte.js b/app/petereport/static/dist/js/adminlte.js similarity index 100% rename from django/petereport/static/dist/js/adminlte.js rename to app/petereport/static/dist/js/adminlte.js diff --git a/django/petereport/static/dist/js/adminlte.js.map b/app/petereport/static/dist/js/adminlte.js.map similarity index 100% rename from django/petereport/static/dist/js/adminlte.js.map rename to app/petereport/static/dist/js/adminlte.js.map diff --git a/django/petereport/static/dist/js/adminlte.min.js b/app/petereport/static/dist/js/adminlte.min.js similarity index 100% rename from django/petereport/static/dist/js/adminlte.min.js rename to app/petereport/static/dist/js/adminlte.min.js diff --git a/django/petereport/static/dist/js/adminlte.min.js.map b/app/petereport/static/dist/js/adminlte.min.js.map similarity index 100% rename from django/petereport/static/dist/js/adminlte.min.js.map rename to app/petereport/static/dist/js/adminlte.min.js.map diff --git a/django/petereport/static/echarts.min.js b/app/petereport/static/echarts.min.js similarity index 100% rename from django/petereport/static/echarts.min.js rename to app/petereport/static/echarts.min.js diff --git a/django/petereport/static/favicon.ico b/app/petereport/static/favicon.ico similarity index 100% rename from django/petereport/static/favicon.ico rename to app/petereport/static/favicon.ico diff --git a/django/petereport/static/martor/css/martor-admin.css b/app/petereport/static/martor/css/martor-admin.css similarity index 100% rename from django/petereport/static/martor/css/martor-admin.css rename to app/petereport/static/martor/css/martor-admin.css diff --git a/django/petereport/static/martor/css/martor-admin.min.css b/app/petereport/static/martor/css/martor-admin.min.css similarity index 100% rename from django/petereport/static/martor/css/martor-admin.min.css rename to app/petereport/static/martor/css/martor-admin.min.css diff --git a/django/petereport/static/martor/css/martor.bootstrap.css b/app/petereport/static/martor/css/martor.bootstrap.css similarity index 100% rename from django/petereport/static/martor/css/martor.bootstrap.css rename to app/petereport/static/martor/css/martor.bootstrap.css diff --git a/django/petereport/static/martor/css/martor.bootstrap.min.css b/app/petereport/static/martor/css/martor.bootstrap.min.css similarity index 100% rename from django/petereport/static/martor/css/martor.bootstrap.min.css rename to app/petereport/static/martor/css/martor.bootstrap.min.css diff --git a/django/petereport/static/martor/css/martor.semantic.css b/app/petereport/static/martor/css/martor.semantic.css similarity index 100% rename from django/petereport/static/martor/css/martor.semantic.css rename to app/petereport/static/martor/css/martor.semantic.css diff --git a/django/petereport/static/martor/css/martor.semantic.min.css b/app/petereport/static/martor/css/martor.semantic.min.css similarity index 100% rename from django/petereport/static/martor/css/martor.semantic.min.css rename to app/petereport/static/martor/css/martor.semantic.min.css diff --git a/django/petereport/static/martor/js/martor.bootstrap.js b/app/petereport/static/martor/js/martor.bootstrap.js similarity index 100% rename from django/petereport/static/martor/js/martor.bootstrap.js rename to app/petereport/static/martor/js/martor.bootstrap.js diff --git a/django/petereport/static/martor/js/martor.bootstrap.min.js b/app/petereport/static/martor/js/martor.bootstrap.min.js similarity index 100% rename from django/petereport/static/martor/js/martor.bootstrap.min.js rename to app/petereport/static/martor/js/martor.bootstrap.min.js diff --git a/django/petereport/static/martor/js/martor.semantic.js b/app/petereport/static/martor/js/martor.semantic.js similarity index 100% rename from django/petereport/static/martor/js/martor.semantic.js rename to app/petereport/static/martor/js/martor.semantic.js diff --git a/django/petereport/static/martor/js/martor.semantic.min.js b/app/petereport/static/martor/js/martor.semantic.min.js similarity index 100% rename from django/petereport/static/martor/js/martor.semantic.min.js rename to app/petereport/static/martor/js/martor.semantic.min.js diff --git a/django/petereport/static/martor/plugins/css/ace.min.css b/app/petereport/static/martor/plugins/css/ace.min.css similarity index 100% rename from django/petereport/static/martor/plugins/css/ace.min.css rename to app/petereport/static/martor/plugins/css/ace.min.css diff --git a/django/petereport/static/martor/plugins/css/bootstrap.min.css b/app/petereport/static/martor/plugins/css/bootstrap.min.css similarity index 100% rename from django/petereport/static/martor/plugins/css/bootstrap.min.css rename to app/petereport/static/martor/plugins/css/bootstrap.min.css diff --git a/django/petereport/static/martor/plugins/css/resizable.min.css b/app/petereport/static/martor/plugins/css/resizable.min.css similarity index 100% rename from django/petereport/static/martor/plugins/css/resizable.min.css rename to app/petereport/static/martor/plugins/css/resizable.min.css diff --git a/django/petereport/static/martor/plugins/css/semantic.min.css b/app/petereport/static/martor/plugins/css/semantic.min.css similarity index 100% rename from django/petereport/static/martor/plugins/css/semantic.min.css rename to app/petereport/static/martor/plugins/css/semantic.min.css diff --git a/django/petereport/static/martor/plugins/fonts/brand-icons.eot b/app/petereport/static/martor/plugins/fonts/brand-icons.eot similarity index 100% rename from django/petereport/static/martor/plugins/fonts/brand-icons.eot rename to app/petereport/static/martor/plugins/fonts/brand-icons.eot diff --git a/django/petereport/static/martor/plugins/fonts/brand-icons.svg b/app/petereport/static/martor/plugins/fonts/brand-icons.svg similarity index 100% rename from django/petereport/static/martor/plugins/fonts/brand-icons.svg rename to app/petereport/static/martor/plugins/fonts/brand-icons.svg diff --git a/django/petereport/static/martor/plugins/fonts/brand-icons.ttf b/app/petereport/static/martor/plugins/fonts/brand-icons.ttf similarity index 100% rename from django/petereport/static/martor/plugins/fonts/brand-icons.ttf rename to app/petereport/static/martor/plugins/fonts/brand-icons.ttf diff --git a/django/petereport/static/martor/plugins/fonts/brand-icons.woff b/app/petereport/static/martor/plugins/fonts/brand-icons.woff similarity index 100% rename from django/petereport/static/martor/plugins/fonts/brand-icons.woff rename to app/petereport/static/martor/plugins/fonts/brand-icons.woff diff --git a/django/petereport/static/martor/plugins/fonts/brand-icons.woff2 b/app/petereport/static/martor/plugins/fonts/brand-icons.woff2 similarity index 100% rename from django/petereport/static/martor/plugins/fonts/brand-icons.woff2 rename to app/petereport/static/martor/plugins/fonts/brand-icons.woff2 diff --git a/django/petereport/static/martor/plugins/fonts/icons.eot b/app/petereport/static/martor/plugins/fonts/icons.eot similarity index 100% rename from django/petereport/static/martor/plugins/fonts/icons.eot rename to app/petereport/static/martor/plugins/fonts/icons.eot diff --git a/django/petereport/static/martor/plugins/fonts/icons.svg b/app/petereport/static/martor/plugins/fonts/icons.svg similarity index 100% rename from django/petereport/static/martor/plugins/fonts/icons.svg rename to app/petereport/static/martor/plugins/fonts/icons.svg diff --git a/django/petereport/static/martor/plugins/fonts/icons.ttf b/app/petereport/static/martor/plugins/fonts/icons.ttf similarity index 100% rename from django/petereport/static/martor/plugins/fonts/icons.ttf rename to app/petereport/static/martor/plugins/fonts/icons.ttf diff --git a/django/petereport/static/martor/plugins/fonts/icons.woff b/app/petereport/static/martor/plugins/fonts/icons.woff similarity index 100% rename from django/petereport/static/martor/plugins/fonts/icons.woff rename to app/petereport/static/martor/plugins/fonts/icons.woff diff --git a/django/petereport/static/martor/plugins/fonts/icons.woff2 b/app/petereport/static/martor/plugins/fonts/icons.woff2 similarity index 100% rename from django/petereport/static/martor/plugins/fonts/icons.woff2 rename to app/petereport/static/martor/plugins/fonts/icons.woff2 diff --git a/django/petereport/static/martor/plugins/fonts/outline-icons.eot b/app/petereport/static/martor/plugins/fonts/outline-icons.eot similarity index 100% rename from django/petereport/static/martor/plugins/fonts/outline-icons.eot rename to app/petereport/static/martor/plugins/fonts/outline-icons.eot diff --git a/django/petereport/static/martor/plugins/fonts/outline-icons.svg b/app/petereport/static/martor/plugins/fonts/outline-icons.svg similarity index 100% rename from django/petereport/static/martor/plugins/fonts/outline-icons.svg rename to app/petereport/static/martor/plugins/fonts/outline-icons.svg diff --git a/django/petereport/static/martor/plugins/fonts/outline-icons.ttf b/app/petereport/static/martor/plugins/fonts/outline-icons.ttf similarity index 100% rename from django/petereport/static/martor/plugins/fonts/outline-icons.ttf rename to app/petereport/static/martor/plugins/fonts/outline-icons.ttf diff --git a/django/petereport/static/martor/plugins/fonts/outline-icons.woff b/app/petereport/static/martor/plugins/fonts/outline-icons.woff similarity index 100% rename from django/petereport/static/martor/plugins/fonts/outline-icons.woff rename to app/petereport/static/martor/plugins/fonts/outline-icons.woff diff --git a/django/petereport/static/martor/plugins/fonts/outline-icons.woff2 b/app/petereport/static/martor/plugins/fonts/outline-icons.woff2 similarity index 100% rename from django/petereport/static/martor/plugins/fonts/outline-icons.woff2 rename to app/petereport/static/martor/plugins/fonts/outline-icons.woff2 diff --git a/django/petereport/static/martor/plugins/images/commonmark.png b/app/petereport/static/martor/plugins/images/commonmark.png similarity index 100% rename from django/petereport/static/martor/plugins/images/commonmark.png rename to app/petereport/static/martor/plugins/images/commonmark.png diff --git a/django/petereport/static/martor/plugins/images/flags.png b/app/petereport/static/martor/plugins/images/flags.png similarity index 100% rename from django/petereport/static/martor/plugins/images/flags.png rename to app/petereport/static/martor/plugins/images/flags.png diff --git a/django/petereport/static/martor/plugins/images/heart.png b/app/petereport/static/martor/plugins/images/heart.png similarity index 100% rename from django/petereport/static/martor/plugins/images/heart.png rename to app/petereport/static/martor/plugins/images/heart.png diff --git a/django/petereport/static/martor/plugins/js/ace.js b/app/petereport/static/martor/plugins/js/ace.js similarity index 100% rename from django/petereport/static/martor/plugins/js/ace.js rename to app/petereport/static/martor/plugins/js/ace.js diff --git a/django/petereport/static/martor/plugins/js/bootstrap.min.js b/app/petereport/static/martor/plugins/js/bootstrap.min.js similarity index 100% rename from django/petereport/static/martor/plugins/js/bootstrap.min.js rename to app/petereport/static/martor/plugins/js/bootstrap.min.js diff --git a/django/petereport/static/martor/plugins/js/emojis.min.js b/app/petereport/static/martor/plugins/js/emojis.min.js similarity index 100% rename from django/petereport/static/martor/plugins/js/emojis.min.js rename to app/petereport/static/martor/plugins/js/emojis.min.js diff --git a/django/petereport/static/martor/plugins/js/ext-language_tools.js b/app/petereport/static/martor/plugins/js/ext-language_tools.js similarity index 100% rename from django/petereport/static/martor/plugins/js/ext-language_tools.js rename to app/petereport/static/martor/plugins/js/ext-language_tools.js diff --git a/django/petereport/static/martor/plugins/js/highlight.min.js b/app/petereport/static/martor/plugins/js/highlight.min.js similarity index 100% rename from django/petereport/static/martor/plugins/js/highlight.min.js rename to app/petereport/static/martor/plugins/js/highlight.min.js diff --git a/django/petereport/static/martor/plugins/js/jquery.min.js b/app/petereport/static/martor/plugins/js/jquery.min.js similarity index 100% rename from django/petereport/static/martor/plugins/js/jquery.min.js rename to app/petereport/static/martor/plugins/js/jquery.min.js diff --git a/django/petereport/static/martor/plugins/js/jquery.slim.min.js b/app/petereport/static/martor/plugins/js/jquery.slim.min.js similarity index 100% rename from django/petereport/static/martor/plugins/js/jquery.slim.min.js rename to app/petereport/static/martor/plugins/js/jquery.slim.min.js diff --git a/django/petereport/static/martor/plugins/js/mode-markdown.js b/app/petereport/static/martor/plugins/js/mode-markdown.js similarity index 100% rename from django/petereport/static/martor/plugins/js/mode-markdown.js rename to app/petereport/static/martor/plugins/js/mode-markdown.js diff --git a/django/petereport/static/martor/plugins/js/resizable.min.js b/app/petereport/static/martor/plugins/js/resizable.min.js similarity index 100% rename from django/petereport/static/martor/plugins/js/resizable.min.js rename to app/petereport/static/martor/plugins/js/resizable.min.js diff --git a/django/petereport/static/martor/plugins/js/semantic.min.js b/app/petereport/static/martor/plugins/js/semantic.min.js similarity index 100% rename from django/petereport/static/martor/plugins/js/semantic.min.js rename to app/petereport/static/martor/plugins/js/semantic.min.js diff --git a/django/petereport/static/martor/plugins/js/snippets/markdown.js b/app/petereport/static/martor/plugins/js/snippets/markdown.js similarity index 100% rename from django/petereport/static/martor/plugins/js/snippets/markdown.js rename to app/petereport/static/martor/plugins/js/snippets/markdown.js diff --git a/django/petereport/static/martor/plugins/js/spellcheck.js b/app/petereport/static/martor/plugins/js/spellcheck.js similarity index 100% rename from django/petereport/static/martor/plugins/js/spellcheck.js rename to app/petereport/static/martor/plugins/js/spellcheck.js diff --git a/django/petereport/static/martor/plugins/js/theme-github.js b/app/petereport/static/martor/plugins/js/theme-github.js similarity index 100% rename from django/petereport/static/martor/plugins/js/theme-github.js rename to app/petereport/static/martor/plugins/js/theme-github.js diff --git a/django/petereport/static/martor/plugins/js/typo.js b/app/petereport/static/martor/plugins/js/typo.js similarity index 100% rename from django/petereport/static/martor/plugins/js/typo.js rename to app/petereport/static/martor/plugins/js/typo.js diff --git a/django/petereport/static/plugins/bootstrap/js/bootstrap.bundle.js b/app/petereport/static/plugins/bootstrap/js/bootstrap.bundle.js similarity index 100% rename from django/petereport/static/plugins/bootstrap/js/bootstrap.bundle.js rename to app/petereport/static/plugins/bootstrap/js/bootstrap.bundle.js diff --git a/django/petereport/static/plugins/bootstrap/js/bootstrap.bundle.js.map b/app/petereport/static/plugins/bootstrap/js/bootstrap.bundle.js.map similarity index 100% rename from django/petereport/static/plugins/bootstrap/js/bootstrap.bundle.js.map rename to app/petereport/static/plugins/bootstrap/js/bootstrap.bundle.js.map diff --git a/django/petereport/static/plugins/bootstrap/js/bootstrap.bundle.min.js b/app/petereport/static/plugins/bootstrap/js/bootstrap.bundle.min.js similarity index 100% rename from django/petereport/static/plugins/bootstrap/js/bootstrap.bundle.min.js rename to app/petereport/static/plugins/bootstrap/js/bootstrap.bundle.min.js diff --git a/django/petereport/static/plugins/bootstrap/js/bootstrap.bundle.min.js.map b/app/petereport/static/plugins/bootstrap/js/bootstrap.bundle.min.js.map similarity index 100% rename from django/petereport/static/plugins/bootstrap/js/bootstrap.bundle.min.js.map rename to app/petereport/static/plugins/bootstrap/js/bootstrap.bundle.min.js.map diff --git a/django/petereport/static/plugins/bootstrap/js/bootstrap.js b/app/petereport/static/plugins/bootstrap/js/bootstrap.js similarity index 100% rename from django/petereport/static/plugins/bootstrap/js/bootstrap.js rename to app/petereport/static/plugins/bootstrap/js/bootstrap.js diff --git a/django/petereport/static/plugins/bootstrap/js/bootstrap.js.map b/app/petereport/static/plugins/bootstrap/js/bootstrap.js.map similarity index 100% rename from django/petereport/static/plugins/bootstrap/js/bootstrap.js.map rename to app/petereport/static/plugins/bootstrap/js/bootstrap.js.map diff --git a/django/petereport/static/plugins/bootstrap/js/bootstrap.min.js b/app/petereport/static/plugins/bootstrap/js/bootstrap.min.js similarity index 100% rename from django/petereport/static/plugins/bootstrap/js/bootstrap.min.js rename to app/petereport/static/plugins/bootstrap/js/bootstrap.min.js diff --git a/django/petereport/static/plugins/bootstrap/js/bootstrap.min.js.map b/app/petereport/static/plugins/bootstrap/js/bootstrap.min.js.map similarity index 100% rename from django/petereport/static/plugins/bootstrap/js/bootstrap.min.js.map rename to app/petereport/static/plugins/bootstrap/js/bootstrap.min.js.map diff --git a/django/petereport/static/plugins/datatables-bs4/css/dataTables.bootstrap4.css b/app/petereport/static/plugins/datatables-bs4/css/dataTables.bootstrap4.css similarity index 100% rename from django/petereport/static/plugins/datatables-bs4/css/dataTables.bootstrap4.css rename to app/petereport/static/plugins/datatables-bs4/css/dataTables.bootstrap4.css diff --git a/django/petereport/static/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css b/app/petereport/static/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css similarity index 100% rename from django/petereport/static/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css rename to app/petereport/static/plugins/datatables-bs4/css/dataTables.bootstrap4.min.css diff --git a/django/petereport/static/plugins/datatables-bs4/js/dataTables.bootstrap4.js b/app/petereport/static/plugins/datatables-bs4/js/dataTables.bootstrap4.js similarity index 100% rename from django/petereport/static/plugins/datatables-bs4/js/dataTables.bootstrap4.js rename to app/petereport/static/plugins/datatables-bs4/js/dataTables.bootstrap4.js diff --git a/django/petereport/static/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js b/app/petereport/static/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js rename to app/petereport/static/plugins/datatables-bs4/js/dataTables.bootstrap4.min.js diff --git a/django/petereport/static/plugins/datatables-buttons/css/buttons.bootstrap4.css b/app/petereport/static/plugins/datatables-buttons/css/buttons.bootstrap4.css similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/css/buttons.bootstrap4.css rename to app/petereport/static/plugins/datatables-buttons/css/buttons.bootstrap4.css diff --git a/django/petereport/static/plugins/datatables-buttons/css/buttons.bootstrap4.min.css b/app/petereport/static/plugins/datatables-buttons/css/buttons.bootstrap4.min.css similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/css/buttons.bootstrap4.min.css rename to app/petereport/static/plugins/datatables-buttons/css/buttons.bootstrap4.min.css diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.bootstrap4.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.bootstrap4.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.bootstrap4.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.bootstrap4.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.bootstrap4.min.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.bootstrap4.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.bootstrap4.min.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.bootstrap4.min.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.colVis.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.colVis.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.colVis.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.colVis.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.colVis.min.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.colVis.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.colVis.min.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.colVis.min.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.flash.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.flash.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.flash.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.flash.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.flash.min.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.flash.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.flash.min.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.flash.min.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.html5.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.html5.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.html5.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.html5.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.html5.min.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.html5.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.html5.min.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.html5.min.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.print.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.print.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.print.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.print.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/buttons.print.min.js b/app/petereport/static/plugins/datatables-buttons/js/buttons.print.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/buttons.print.min.js rename to app/petereport/static/plugins/datatables-buttons/js/buttons.print.min.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/dataTables.buttons.js b/app/petereport/static/plugins/datatables-buttons/js/dataTables.buttons.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/dataTables.buttons.js rename to app/petereport/static/plugins/datatables-buttons/js/dataTables.buttons.js diff --git a/django/petereport/static/plugins/datatables-buttons/js/dataTables.buttons.min.js b/app/petereport/static/plugins/datatables-buttons/js/dataTables.buttons.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-buttons/js/dataTables.buttons.min.js rename to app/petereport/static/plugins/datatables-buttons/js/dataTables.buttons.min.js diff --git a/django/petereport/static/plugins/datatables-responsive/css/responsive.bootstrap4.css b/app/petereport/static/plugins/datatables-responsive/css/responsive.bootstrap4.css similarity index 100% rename from django/petereport/static/plugins/datatables-responsive/css/responsive.bootstrap4.css rename to app/petereport/static/plugins/datatables-responsive/css/responsive.bootstrap4.css diff --git a/django/petereport/static/plugins/datatables-responsive/css/responsive.bootstrap4.min.css b/app/petereport/static/plugins/datatables-responsive/css/responsive.bootstrap4.min.css similarity index 100% rename from django/petereport/static/plugins/datatables-responsive/css/responsive.bootstrap4.min.css rename to app/petereport/static/plugins/datatables-responsive/css/responsive.bootstrap4.min.css diff --git a/django/petereport/static/plugins/datatables-responsive/js/dataTables.responsive.js b/app/petereport/static/plugins/datatables-responsive/js/dataTables.responsive.js similarity index 100% rename from django/petereport/static/plugins/datatables-responsive/js/dataTables.responsive.js rename to app/petereport/static/plugins/datatables-responsive/js/dataTables.responsive.js diff --git a/django/petereport/static/plugins/datatables-responsive/js/dataTables.responsive.min.js b/app/petereport/static/plugins/datatables-responsive/js/dataTables.responsive.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-responsive/js/dataTables.responsive.min.js rename to app/petereport/static/plugins/datatables-responsive/js/dataTables.responsive.min.js diff --git a/django/petereport/static/plugins/datatables-responsive/js/responsive.bootstrap4.js b/app/petereport/static/plugins/datatables-responsive/js/responsive.bootstrap4.js similarity index 100% rename from django/petereport/static/plugins/datatables-responsive/js/responsive.bootstrap4.js rename to app/petereport/static/plugins/datatables-responsive/js/responsive.bootstrap4.js diff --git a/django/petereport/static/plugins/datatables-responsive/js/responsive.bootstrap4.min.js b/app/petereport/static/plugins/datatables-responsive/js/responsive.bootstrap4.min.js similarity index 100% rename from django/petereport/static/plugins/datatables-responsive/js/responsive.bootstrap4.min.js rename to app/petereport/static/plugins/datatables-responsive/js/responsive.bootstrap4.min.js diff --git a/django/petereport/static/plugins/datatables/jquery.dataTables.js b/app/petereport/static/plugins/datatables/jquery.dataTables.js similarity index 100% rename from django/petereport/static/plugins/datatables/jquery.dataTables.js rename to app/petereport/static/plugins/datatables/jquery.dataTables.js diff --git a/django/petereport/static/plugins/datatables/jquery.dataTables.min.js b/app/petereport/static/plugins/datatables/jquery.dataTables.min.js similarity index 100% rename from django/petereport/static/plugins/datatables/jquery.dataTables.min.js rename to app/petereport/static/plugins/datatables/jquery.dataTables.min.js diff --git a/django/petereport/static/plugins/fontawesome-free/css/all.css b/app/petereport/static/plugins/fontawesome-free/css/all.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/all.css rename to app/petereport/static/plugins/fontawesome-free/css/all.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/all.min.css b/app/petereport/static/plugins/fontawesome-free/css/all.min.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/all.min.css rename to app/petereport/static/plugins/fontawesome-free/css/all.min.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/brands.css b/app/petereport/static/plugins/fontawesome-free/css/brands.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/brands.css rename to app/petereport/static/plugins/fontawesome-free/css/brands.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/brands.min.css b/app/petereport/static/plugins/fontawesome-free/css/brands.min.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/brands.min.css rename to app/petereport/static/plugins/fontawesome-free/css/brands.min.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/fontawesome.css b/app/petereport/static/plugins/fontawesome-free/css/fontawesome.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/fontawesome.css rename to app/petereport/static/plugins/fontawesome-free/css/fontawesome.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/fontawesome.min.css b/app/petereport/static/plugins/fontawesome-free/css/fontawesome.min.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/fontawesome.min.css rename to app/petereport/static/plugins/fontawesome-free/css/fontawesome.min.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/regular.css b/app/petereport/static/plugins/fontawesome-free/css/regular.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/regular.css rename to app/petereport/static/plugins/fontawesome-free/css/regular.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/regular.min.css b/app/petereport/static/plugins/fontawesome-free/css/regular.min.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/regular.min.css rename to app/petereport/static/plugins/fontawesome-free/css/regular.min.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/solid.css b/app/petereport/static/plugins/fontawesome-free/css/solid.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/solid.css rename to app/petereport/static/plugins/fontawesome-free/css/solid.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/solid.min.css b/app/petereport/static/plugins/fontawesome-free/css/solid.min.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/solid.min.css rename to app/petereport/static/plugins/fontawesome-free/css/solid.min.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/svg-with-js.css b/app/petereport/static/plugins/fontawesome-free/css/svg-with-js.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/svg-with-js.css rename to app/petereport/static/plugins/fontawesome-free/css/svg-with-js.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/svg-with-js.min.css b/app/petereport/static/plugins/fontawesome-free/css/svg-with-js.min.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/svg-with-js.min.css rename to app/petereport/static/plugins/fontawesome-free/css/svg-with-js.min.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/v4-shims.css b/app/petereport/static/plugins/fontawesome-free/css/v4-shims.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/v4-shims.css rename to app/petereport/static/plugins/fontawesome-free/css/v4-shims.css diff --git a/django/petereport/static/plugins/fontawesome-free/css/v4-shims.min.css b/app/petereport/static/plugins/fontawesome-free/css/v4-shims.min.css similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/css/v4-shims.min.css rename to app/petereport/static/plugins/fontawesome-free/css/v4-shims.min.css diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.eot b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.eot similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.eot rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.eot diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.svg b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.svg similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.svg rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.svg diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.ttf b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.ttf similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.ttf rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.ttf diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-brands-400.woff2 diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.eot b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.eot similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.eot rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.eot diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.svg b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.svg similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.svg rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.svg diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.ttf b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.ttf similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.ttf rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.ttf diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-regular-400.woff2 diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.eot b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.eot similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.eot rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.eot diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.svg b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.svg similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.svg rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.svg diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.ttf b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.ttf similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.ttf rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.ttf diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff diff --git a/django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 b/app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 similarity index 100% rename from django/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 rename to app/petereport/static/plugins/fontawesome-free/webfonts/fa-solid-900.woff2 diff --git a/django/petereport/static/plugins/jquery-knob/jquery.knob.min.js b/app/petereport/static/plugins/jquery-knob/jquery.knob.min.js similarity index 100% rename from django/petereport/static/plugins/jquery-knob/jquery.knob.min.js rename to app/petereport/static/plugins/jquery-knob/jquery.knob.min.js diff --git a/django/petereport/static/plugins/jquery/jquery.js b/app/petereport/static/plugins/jquery/jquery.js similarity index 100% rename from django/petereport/static/plugins/jquery/jquery.js rename to app/petereport/static/plugins/jquery/jquery.js diff --git a/django/petereport/static/plugins/jquery/jquery.min.js b/app/petereport/static/plugins/jquery/jquery.min.js similarity index 100% rename from django/petereport/static/plugins/jquery/jquery.min.js rename to app/petereport/static/plugins/jquery/jquery.min.js diff --git a/django/petereport/static/plugins/jquery/jquery.min.map b/app/petereport/static/plugins/jquery/jquery.min.map similarity index 100% rename from django/petereport/static/plugins/jquery/jquery.min.map rename to app/petereport/static/plugins/jquery/jquery.min.map diff --git a/django/petereport/static/plugins/jquery/jquery.slim.js b/app/petereport/static/plugins/jquery/jquery.slim.js similarity index 100% rename from django/petereport/static/plugins/jquery/jquery.slim.js rename to app/petereport/static/plugins/jquery/jquery.slim.js diff --git a/django/petereport/static/plugins/jquery/jquery.slim.min.js b/app/petereport/static/plugins/jquery/jquery.slim.min.js similarity index 100% rename from django/petereport/static/plugins/jquery/jquery.slim.min.js rename to app/petereport/static/plugins/jquery/jquery.slim.min.js diff --git a/django/petereport/static/plugins/jquery/jquery.slim.min.map b/app/petereport/static/plugins/jquery/jquery.slim.min.map similarity index 100% rename from django/petereport/static/plugins/jquery/jquery.slim.min.map rename to app/petereport/static/plugins/jquery/jquery.slim.min.map diff --git a/django/petereport/static/plugins/jszip/jszip.js b/app/petereport/static/plugins/jszip/jszip.js similarity index 100% rename from django/petereport/static/plugins/jszip/jszip.js rename to app/petereport/static/plugins/jszip/jszip.js diff --git a/django/petereport/static/plugins/jszip/jszip.min.js b/app/petereport/static/plugins/jszip/jszip.min.js similarity index 100% rename from django/petereport/static/plugins/jszip/jszip.min.js rename to app/petereport/static/plugins/jszip/jszip.min.js diff --git a/django/petereport/static/plugins/pdfmake/pdfmake.js b/app/petereport/static/plugins/pdfmake/pdfmake.js similarity index 100% rename from django/petereport/static/plugins/pdfmake/pdfmake.js rename to app/petereport/static/plugins/pdfmake/pdfmake.js diff --git a/django/petereport/static/plugins/pdfmake/pdfmake.js.map b/app/petereport/static/plugins/pdfmake/pdfmake.js.map similarity index 100% rename from django/petereport/static/plugins/pdfmake/pdfmake.js.map rename to app/petereport/static/plugins/pdfmake/pdfmake.js.map diff --git a/django/petereport/static/plugins/pdfmake/pdfmake.min.js b/app/petereport/static/plugins/pdfmake/pdfmake.min.js similarity index 100% rename from django/petereport/static/plugins/pdfmake/pdfmake.min.js rename to app/petereport/static/plugins/pdfmake/pdfmake.min.js diff --git a/django/petereport/static/plugins/pdfmake/pdfmake.min.js.map b/app/petereport/static/plugins/pdfmake/pdfmake.min.js.map similarity index 100% rename from django/petereport/static/plugins/pdfmake/pdfmake.min.js.map rename to app/petereport/static/plugins/pdfmake/pdfmake.min.js.map diff --git a/django/petereport/static/plugins/pdfmake/vfs_fonts.js b/app/petereport/static/plugins/pdfmake/vfs_fonts.js similarity index 100% rename from django/petereport/static/plugins/pdfmake/vfs_fonts.js rename to app/petereport/static/plugins/pdfmake/vfs_fonts.js diff --git a/django/petereport/urls.py b/app/petereport/urls.py similarity index 100% rename from django/petereport/urls.py rename to app/petereport/urls.py diff --git a/django/petereport/wsgi.py b/app/petereport/wsgi.py similarity index 100% rename from django/petereport/wsgi.py rename to app/petereport/wsgi.py diff --git a/django/preport/__init__.py b/app/preport/__init__.py similarity index 100% rename from django/preport/__init__.py rename to app/preport/__init__.py diff --git a/django/preport/admin.py b/app/preport/admin.py similarity index 100% rename from django/preport/admin.py rename to app/preport/admin.py diff --git a/django/preport/apps.py b/app/preport/apps.py similarity index 100% rename from django/preport/apps.py rename to app/preport/apps.py diff --git a/django/preport/decorators.py b/app/preport/decorators.py similarity index 100% rename from django/preport/decorators.py rename to app/preport/decorators.py diff --git a/django/preport/forms.py b/app/preport/forms.py similarity index 100% rename from django/preport/forms.py rename to app/preport/forms.py diff --git a/django/preport/migrations/0001_initial.py b/app/preport/migrations/0001_initial.py similarity index 100% rename from django/preport/migrations/0001_initial.py rename to app/preport/migrations/0001_initial.py diff --git a/django/preport/migrations/0002_auto_20210909_1050.py b/app/preport/migrations/0002_auto_20210909_1050.py similarity index 100% rename from django/preport/migrations/0002_auto_20210909_1050.py rename to app/preport/migrations/0002_auto_20210909_1050.py diff --git a/django/preport/migrations/__init__.py b/app/preport/migrations/__init__.py similarity index 100% rename from django/preport/migrations/__init__.py rename to app/preport/migrations/__init__.py diff --git a/django/preport/models.py b/app/preport/models.py similarity index 100% rename from django/preport/models.py rename to app/preport/models.py diff --git a/django/preport/templates/appendix/appendix_add.html b/app/preport/templates/appendix/appendix_add.html similarity index 100% rename from django/preport/templates/appendix/appendix_add.html rename to app/preport/templates/appendix/appendix_add.html diff --git a/django/preport/templates/appendix/appendix_view.html b/app/preport/templates/appendix/appendix_view.html similarity index 100% rename from django/preport/templates/appendix/appendix_view.html rename to app/preport/templates/appendix/appendix_view.html diff --git a/django/preport/templates/appendix/reportappendix.html b/app/preport/templates/appendix/reportappendix.html similarity index 100% rename from django/preport/templates/appendix/reportappendix.html rename to app/preport/templates/appendix/reportappendix.html diff --git a/django/preport/templates/attacktree/attacktree_add.html b/app/preport/templates/attacktree/attacktree_add.html similarity index 100% rename from django/preport/templates/attacktree/attacktree_add.html rename to app/preport/templates/attacktree/attacktree_add.html diff --git a/django/preport/templates/attacktree/attacktree_view.html b/app/preport/templates/attacktree/attacktree_view.html similarity index 100% rename from django/preport/templates/attacktree/attacktree_view.html rename to app/preport/templates/attacktree/attacktree_view.html diff --git a/django/preport/templates/attacktree/reportattacktree.html b/app/preport/templates/attacktree/reportattacktree.html similarity index 100% rename from django/preport/templates/attacktree/reportattacktree.html rename to app/preport/templates/attacktree/reportattacktree.html diff --git a/django/preport/templates/configuration/user_add.html b/app/preport/templates/configuration/user_add.html similarity index 99% rename from django/preport/templates/configuration/user_add.html rename to app/preport/templates/configuration/user_add.html index 20a4b51..1e75624 100644 --- a/django/preport/templates/configuration/user_add.html +++ b/app/preport/templates/configuration/user_add.html @@ -59,7 +59,7 @@

User details

diff --git a/django/preport/templates/configuration/user_list.html b/app/preport/templates/configuration/user_list.html similarity index 100% rename from django/preport/templates/configuration/user_list.html rename to app/preport/templates/configuration/user_list.html diff --git a/django/preport/templates/cwe/cwe_list.html b/app/preport/templates/cwe/cwe_list.html similarity index 100% rename from django/preport/templates/cwe/cwe_list.html rename to app/preport/templates/cwe/cwe_list.html diff --git a/django/preport/templates/findings/defectdojo_products.html b/app/preport/templates/findings/defectdojo_products.html similarity index 100% rename from django/preport/templates/findings/defectdojo_products.html rename to app/preport/templates/findings/defectdojo_products.html diff --git a/django/preport/templates/findings/finding_add.html b/app/preport/templates/findings/finding_add.html similarity index 100% rename from django/preport/templates/findings/finding_add.html rename to app/preport/templates/findings/finding_add.html diff --git a/django/preport/templates/findings/finding_view.html b/app/preport/templates/findings/finding_view.html similarity index 100% rename from django/preport/templates/findings/finding_view.html rename to app/preport/templates/findings/finding_view.html diff --git a/django/preport/templates/findings/findings_list.html b/app/preport/templates/findings/findings_list.html similarity index 100% rename from django/preport/templates/findings/findings_list.html rename to app/preport/templates/findings/findings_list.html diff --git a/django/preport/templates/findings/reportfindings.html b/app/preport/templates/findings/reportfindings.html similarity index 100% rename from django/preport/templates/findings/reportfindings.html rename to app/preport/templates/findings/reportfindings.html diff --git a/django/preport/templates/findings/template_add.html b/app/preport/templates/findings/template_add.html similarity index 100% rename from django/preport/templates/findings/template_add.html rename to app/preport/templates/findings/template_add.html diff --git a/django/preport/templates/findings/template_list.html b/app/preport/templates/findings/template_list.html similarity index 100% rename from django/preport/templates/findings/template_list.html rename to app/preport/templates/findings/template_list.html diff --git a/django/preport/templates/findings/template_view.html b/app/preport/templates/findings/template_view.html similarity index 100% rename from django/preport/templates/findings/template_view.html rename to app/preport/templates/findings/template_view.html diff --git a/django/preport/templates/findings/templateaddfinding.html b/app/preport/templates/findings/templateaddfinding.html similarity index 100% rename from django/preport/templates/findings/templateaddfinding.html rename to app/preport/templates/findings/templateaddfinding.html diff --git a/django/preport/templates/findings/uploadfindings.html b/app/preport/templates/findings/uploadfindings.html similarity index 100% rename from django/preport/templates/findings/uploadfindings.html rename to app/preport/templates/findings/uploadfindings.html diff --git a/django/preport/templates/home/aside.html b/app/preport/templates/home/aside.html similarity index 100% rename from django/preport/templates/home/aside.html rename to app/preport/templates/home/aside.html diff --git a/django/preport/templates/home/footer.html b/app/preport/templates/home/footer.html similarity index 100% rename from django/preport/templates/home/footer.html rename to app/preport/templates/home/footer.html diff --git a/django/preport/templates/home/index.html b/app/preport/templates/home/index.html similarity index 100% rename from django/preport/templates/home/index.html rename to app/preport/templates/home/index.html diff --git a/django/preport/templates/home/template.html b/app/preport/templates/home/template.html similarity index 100% rename from django/preport/templates/home/template.html rename to app/preport/templates/home/template.html diff --git a/django/preport/templates/home/template_login.html b/app/preport/templates/home/template_login.html similarity index 100% rename from django/preport/templates/home/template_login.html rename to app/preport/templates/home/template_login.html diff --git a/django/preport/templates/home/top_navigation.html b/app/preport/templates/home/top_navigation.html similarity index 100% rename from django/preport/templates/home/top_navigation.html rename to app/preport/templates/home/top_navigation.html diff --git a/django/preport/templates/products/product_add.html b/app/preport/templates/products/product_add.html similarity index 100% rename from django/preport/templates/products/product_add.html rename to app/preport/templates/products/product_add.html diff --git a/django/preport/templates/products/product_list.html b/app/preport/templates/products/product_list.html similarity index 100% rename from django/preport/templates/products/product_list.html rename to app/preport/templates/products/product_list.html diff --git a/django/preport/templates/products/product_view.html b/app/preport/templates/products/product_view.html similarity index 100% rename from django/preport/templates/products/product_view.html rename to app/preport/templates/products/product_view.html diff --git a/django/preport/templates/registration/logged_out.html b/app/preport/templates/registration/logged_out.html similarity index 100% rename from django/preport/templates/registration/logged_out.html rename to app/preport/templates/registration/logged_out.html diff --git a/django/preport/templates/registration/login.html b/app/preport/templates/registration/login.html similarity index 100% rename from django/preport/templates/registration/login.html rename to app/preport/templates/registration/login.html diff --git a/django/preport/templates/reports/report_add.html b/app/preport/templates/reports/report_add.html similarity index 100% rename from django/preport/templates/reports/report_add.html rename to app/preport/templates/reports/report_add.html diff --git a/django/preport/templates/reports/report_list.html b/app/preport/templates/reports/report_list.html similarity index 100% rename from django/preport/templates/reports/report_list.html rename to app/preport/templates/reports/report_list.html diff --git a/django/preport/templates/reports/report_view.html b/app/preport/templates/reports/report_view.html similarity index 100% rename from django/preport/templates/reports/report_view.html rename to app/preport/templates/reports/report_view.html diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/README.md b/app/preport/templates/tpl/bootstrap-4-pandoc-template/README.md similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/README.md rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/README.md diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/css/bootstrap-toc.min.css b/app/preport/templates/tpl/bootstrap-4-pandoc-template/css/bootstrap-toc.min.css similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/css/bootstrap-toc.min.css rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/css/bootstrap-toc.min.css diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/css/bootstrap.min.css b/app/preport/templates/tpl/bootstrap-4-pandoc-template/css/bootstrap.min.css similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/css/bootstrap.min.css rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/css/bootstrap.min.css diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/css/main.css b/app/preport/templates/tpl/bootstrap-4-pandoc-template/css/main.css similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/css/main.css rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/css/main.css diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/js/bootstrap-toc.min.js b/app/preport/templates/tpl/bootstrap-4-pandoc-template/js/bootstrap-toc.min.js similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/js/bootstrap-toc.min.js rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/js/bootstrap-toc.min.js diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/js/bootstrap.min.js b/app/preport/templates/tpl/bootstrap-4-pandoc-template/js/bootstrap.min.js similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/js/bootstrap.min.js rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/js/bootstrap.min.js diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/js/jquery-3.3.1.min.js b/app/preport/templates/tpl/bootstrap-4-pandoc-template/js/jquery-3.3.1.min.js similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/js/jquery-3.3.1.min.js rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/js/jquery-3.3.1.min.js diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/js/main.js b/app/preport/templates/tpl/bootstrap-4-pandoc-template/js/main.js similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/js/main.js rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/js/main.js diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/js/popper.min.js b/app/preport/templates/tpl/bootstrap-4-pandoc-template/js/popper.min.js similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/js/popper.min.js rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/js/popper.min.js diff --git a/django/preport/templates/tpl/bootstrap-4-pandoc-template/template.html b/app/preport/templates/tpl/bootstrap-4-pandoc-template/template.html similarity index 100% rename from django/preport/templates/tpl/bootstrap-4-pandoc-template/template.html rename to app/preport/templates/tpl/bootstrap-4-pandoc-template/template.html diff --git a/django/preport/templates/tpl/eisvogel.latex b/app/preport/templates/tpl/eisvogel.latex similarity index 100% rename from django/preport/templates/tpl/eisvogel.latex rename to app/preport/templates/tpl/eisvogel.latex diff --git a/django/preport/templates/tpl/html/html_finding.md b/app/preport/templates/tpl/html/html_finding.md similarity index 100% rename from django/preport/templates/tpl/html/html_finding.md rename to app/preport/templates/tpl/html/html_finding.md diff --git a/django/preport/templates/tpl/html/html_finding_end_table.html b/app/preport/templates/tpl/html/html_finding_end_table.html similarity index 100% rename from django/preport/templates/tpl/html/html_finding_end_table.html rename to app/preport/templates/tpl/html/html_finding_end_table.html diff --git a/django/preport/templates/tpl/html/html_finding_summary.html b/app/preport/templates/tpl/html/html_finding_summary.html similarity index 100% rename from django/preport/templates/tpl/html/html_finding_summary.html rename to app/preport/templates/tpl/html/html_finding_summary.html diff --git a/django/preport/templates/tpl/html/html_finding_summary_table.html b/app/preport/templates/tpl/html/html_finding_summary_table.html similarity index 100% rename from django/preport/templates/tpl/html/html_finding_summary_table.html rename to app/preport/templates/tpl/html/html_finding_summary_table.html diff --git a/django/preport/templates/tpl/html/html_report.md b/app/preport/templates/tpl/html/html_report.md similarity index 100% rename from django/preport/templates/tpl/html/html_report.md rename to app/preport/templates/tpl/html/html_report.md diff --git a/django/preport/templates/tpl/html/md_appendix.md b/app/preport/templates/tpl/html/md_appendix.md similarity index 100% rename from django/preport/templates/tpl/html/md_appendix.md rename to app/preport/templates/tpl/html/md_appendix.md diff --git a/django/preport/templates/tpl/html/md_attacktree.md b/app/preport/templates/tpl/html/md_attacktree.md similarity index 100% rename from django/preport/templates/tpl/html/md_attacktree.md rename to app/preport/templates/tpl/html/md_attacktree.md diff --git a/django/preport/templates/tpl/jupyter/NA.ipynb b/app/preport/templates/tpl/jupyter/NA.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/NA.ipynb rename to app/preport/templates/tpl/jupyter/NA.ipynb diff --git a/django/preport/templates/tpl/jupyter/additional_notes.ipynb b/app/preport/templates/tpl/jupyter/additional_notes.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/additional_notes.ipynb rename to app/preport/templates/tpl/jupyter/additional_notes.ipynb diff --git a/django/preport/templates/tpl/jupyter/appendix.ipynb b/app/preport/templates/tpl/jupyter/appendix.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/appendix.ipynb rename to app/preport/templates/tpl/jupyter/appendix.ipynb diff --git a/django/preport/templates/tpl/jupyter/appendix_in_finding.ipynb b/app/preport/templates/tpl/jupyter/appendix_in_finding.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/appendix_in_finding.ipynb rename to app/preport/templates/tpl/jupyter/appendix_in_finding.ipynb diff --git a/django/preport/templates/tpl/jupyter/attacktree.ipynb b/app/preport/templates/tpl/jupyter/attacktree.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/attacktree.ipynb rename to app/preport/templates/tpl/jupyter/attacktree.ipynb diff --git a/django/preport/templates/tpl/jupyter/attacktree_in_finding.ipynb b/app/preport/templates/tpl/jupyter/attacktree_in_finding.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/attacktree_in_finding.ipynb rename to app/preport/templates/tpl/jupyter/attacktree_in_finding.ipynb diff --git a/django/preport/templates/tpl/jupyter/attacktrees.ipynb b/app/preport/templates/tpl/jupyter/attacktrees.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/attacktrees.ipynb rename to app/preport/templates/tpl/jupyter/attacktrees.ipynb diff --git a/django/preport/templates/tpl/jupyter/finding.ipynb b/app/preport/templates/tpl/jupyter/finding.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/finding.ipynb rename to app/preport/templates/tpl/jupyter/finding.ipynb diff --git a/django/preport/templates/tpl/jupyter/finding_summary.ipynb b/app/preport/templates/tpl/jupyter/finding_summary.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/finding_summary.ipynb rename to app/preport/templates/tpl/jupyter/finding_summary.ipynb diff --git a/django/preport/templates/tpl/jupyter/report.ipynb b/app/preport/templates/tpl/jupyter/report.ipynb similarity index 100% rename from django/preport/templates/tpl/jupyter/report.ipynb rename to app/preport/templates/tpl/jupyter/report.ipynb diff --git a/django/preport/templates/tpl/markdown/md_appendix.md b/app/preport/templates/tpl/markdown/md_appendix.md similarity index 100% rename from django/preport/templates/tpl/markdown/md_appendix.md rename to app/preport/templates/tpl/markdown/md_appendix.md diff --git a/django/preport/templates/tpl/markdown/md_attacktree.md b/app/preport/templates/tpl/markdown/md_attacktree.md similarity index 100% rename from django/preport/templates/tpl/markdown/md_attacktree.md rename to app/preport/templates/tpl/markdown/md_attacktree.md diff --git a/django/preport/templates/tpl/markdown/md_finding.md b/app/preport/templates/tpl/markdown/md_finding.md similarity index 100% rename from django/preport/templates/tpl/markdown/md_finding.md rename to app/preport/templates/tpl/markdown/md_finding.md diff --git a/django/preport/templates/tpl/markdown/md_finding_summary.md b/app/preport/templates/tpl/markdown/md_finding_summary.md similarity index 100% rename from django/preport/templates/tpl/markdown/md_finding_summary.md rename to app/preport/templates/tpl/markdown/md_finding_summary.md diff --git a/django/preport/templates/tpl/markdown/md_report.md b/app/preport/templates/tpl/markdown/md_report.md similarity index 100% rename from django/preport/templates/tpl/markdown/md_report.md rename to app/preport/templates/tpl/markdown/md_report.md diff --git a/django/preport/templates/tpl/pdf/pdf_appendix.md b/app/preport/templates/tpl/pdf/pdf_appendix.md similarity index 100% rename from django/preport/templates/tpl/pdf/pdf_appendix.md rename to app/preport/templates/tpl/pdf/pdf_appendix.md diff --git a/django/preport/templates/tpl/pdf/pdf_attacktree.md b/app/preport/templates/tpl/pdf/pdf_attacktree.md similarity index 100% rename from django/preport/templates/tpl/pdf/pdf_attacktree.md rename to app/preport/templates/tpl/pdf/pdf_attacktree.md diff --git a/django/preport/templates/tpl/pdf/pdf_finding.md b/app/preport/templates/tpl/pdf/pdf_finding.md similarity index 100% rename from django/preport/templates/tpl/pdf/pdf_finding.md rename to app/preport/templates/tpl/pdf/pdf_finding.md diff --git a/django/preport/templates/tpl/pdf/pdf_finding_summary.md b/app/preport/templates/tpl/pdf/pdf_finding_summary.md similarity index 100% rename from django/preport/templates/tpl/pdf/pdf_finding_summary.md rename to app/preport/templates/tpl/pdf/pdf_finding_summary.md diff --git a/django/preport/templates/tpl/pdf/pdf_header.tex b/app/preport/templates/tpl/pdf/pdf_header.tex similarity index 100% rename from django/preport/templates/tpl/pdf/pdf_header.tex rename to app/preport/templates/tpl/pdf/pdf_header.tex diff --git a/django/preport/templates/tpl/pdf/pdf_header.yaml b/app/preport/templates/tpl/pdf/pdf_header.yaml similarity index 100% rename from django/preport/templates/tpl/pdf/pdf_header.yaml rename to app/preport/templates/tpl/pdf/pdf_header.yaml diff --git a/django/preport/templates/tpl/pdf/pdf_report.md b/app/preport/templates/tpl/pdf/pdf_report.md similarity index 100% rename from django/preport/templates/tpl/pdf/pdf_report.md rename to app/preport/templates/tpl/pdf/pdf_report.md diff --git a/django/preport/templates/tpl/petereport.latex b/app/preport/templates/tpl/petereport.latex similarity index 100% rename from django/preport/templates/tpl/petereport.latex rename to app/preport/templates/tpl/petereport.latex diff --git a/django/preport/templatetags/__init__.py b/app/preport/templatetags/__init__.py similarity index 100% rename from django/preport/templatetags/__init__.py rename to app/preport/templatetags/__init__.py diff --git a/django/preport/templatetags/app_filters.py b/app/preport/templatetags/app_filters.py similarity index 100% rename from django/preport/templatetags/app_filters.py rename to app/preport/templatetags/app_filters.py diff --git a/django/preport/tests.py b/app/preport/tests.py similarity index 100% rename from django/preport/tests.py rename to app/preport/tests.py diff --git a/django/preport/urls.py b/app/preport/urls.py similarity index 100% rename from django/preport/urls.py rename to app/preport/urls.py diff --git a/django/preport/views.py b/app/preport/views.py similarity index 100% rename from django/preport/views.py rename to app/preport/views.py diff --git a/docker-compose.yml b/docker-compose.yml index 858e1be..52d73ad 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -6,7 +6,7 @@ services: volumes: - ./nginx:/opt/petereport/nginx - ./nginx/petereport.conf:/etc/nginx/conf.d/petereport.conf - - ./django/petereport/static:/opt/petereport/django/petereport/static + - ./app/petereport/static:/opt/petereport/app/petereport/static ports: - 80:80 - 443:443 @@ -16,14 +16,14 @@ services: petereport: build: context: . - dockerfile: ./django/config/Dockerfile + dockerfile: ./app/config/Dockerfile command: bash -c " sleep 1 && pipenv install && - pipenv run ./django/manage.py makemigrations && - pipenv run ./django/manage.py migrate && - pipenv run ./django/manage.py loaddata ./django/config/cwe-list.json && - pipenv run gunicorn --chdir ./django petereport.wsgi:application --bind 0.0.0.0:8000" + pipenv run ./app/manage.py makemigrations && + pipenv run ./app/manage.py migrate && + pipenv run ./app/manage.py loaddata ./app/config/cwe-list.json && + pipenv run gunicorn --chdir ./app petereport.wsgi:application --bind 0.0.0.0:8000" volumes: - .:/opt/petereport expose: diff --git a/docs/django/index.html b/docs/django/index.html index b7f98c1..7e25511 100644 --- a/docs/django/index.html +++ b/docs/django/index.html @@ -194,7 +194,7 @@

PeTeReport

  • Clone the project and cd into PeTeReport: cd petereport/
  • Create a new virtual environment and installing dependencies: pipenv install
  • Run the virtual environment: pipenv shell
  • -
  • Go to Django PeTeReport: cd django/
  • +
  • Go to Django PeTeReport App: cd app/
  • Create the database: python manage.py migrate
  • Make the latest database changes: python manage.py makemigrations
  • Super user admin/P3t3r3p0rt will be created, but you can create a new super user: python manage.py createsuperuser
  • @@ -203,7 +203,7 @@

    PeTeReport

    Start the server

    1. Run the virtual environment: pipenv shell
    2. -
    3. Go to Django PeTeReport: cd django/
    4. +
    5. Go to Django PeTeReport App: cd app/
    6. Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000
    7. Go to http://127.0.0.1:8000/
    8. Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file
    9. @@ -226,7 +226,7 @@

      Clean PeTeReport

      1. Stop the server if it's running: Ctrl + C
      2. Run the virtual environment: pipenv shell
      3. -
      4. Go to Django PeTeReport: cd django/
      5. +
      6. Go to Django PeTeReport App: cd app/
      7. Run cleaner: python clean.py
      8. Make the latest database changes: python manage.py makemigrations
      9. Make the latest database changes: python manage.py migrate
      10. @@ -236,7 +236,7 @@

        Clean PeTeReport

        Configuration

        1. Stop the server if it's running: Ctrl + C
        2. -
        3. Customize reports and configuration in django/config/petereport_config.py
        4. +
        5. Customize reports and configuration in app/config/petereport_config.py
        6. Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000
        diff --git a/docs/docker/index.html b/docs/docker/index.html index ac5b87b..92727c6 100644 --- a/docs/docker/index.html +++ b/docs/docker/index.html @@ -134,7 +134,7 @@

        Deployment

        1. -

          Customize reports and configuration in django/config/petereport_config.py

          +

          Customize reports and configuration in app/config/petereport_config.py

        2. Build environment

          diff --git a/docs/findings/index.html b/docs/findings/index.html index 9446271..50e4d7d 100644 --- a/docs/findings/index.html +++ b/docs/findings/index.html @@ -153,7 +153,7 @@

          Add Finding from Templates

          Add Finding from Template

          Import Findings from DefectDojo

          We can import the findings from DefectDojo, first of all we need to edit the configuration file in order to add the API endpoint and the API key of our DefectDojo deployment.

          -

          Edit configuration in django/config/petereport_config.py

          +

          Edit configuration in app/config/petereport_config.py

          DEFECTDOJO_CONFIG = {
               'DefectDojoURL': 'https://demo.defectdojo.org',
               'apiKey': 'Token Key' # Format Token Key
          diff --git a/docs/search/search_index.json b/docs/search/search_index.json
          index cb3fb84..5c4981b 100644
          --- a/docs/search/search_index.json
          +++ b/docs/search/search_index.json
          @@ -1 +1 @@
          -{"config":{"indexing":"full","lang":["en"],"min_search_length":3,"prebuild_index":false,"separator":"[\\s\\-]+"},"docs":[{"location":"","text":"PeTeReport PeTeReport ( Pe n Te st Report ) is an open-source application vulnerability reporting tool designed to assist pentesting/redteaming efforts, by simplifying the task of writting and generation of reports. Focused in product security, the tool help security researchers and pentesters to provide detailed findings, appendix, attack paths and manage a finding template database to avoid wasting time spent in the reporting phase. PeTeReport ( Pe n Te st Report ) is written in Django and Python 3 with the aim to help pentesters to manage a finding repository, write reports (in Markdown) and generate reports in different formats (HTML, CSV, PDF, Jupyter and Markdown). Pentesting content management and reporting tool Architecture Features Customizable reports output Customizable reports templates Findings template database Possibility to add appendix to findings Possibility to add attack trees Deciduous to findings HTML Output format CSV Output format PDF Output format Jupyter Notebook Output format Markdown Output format CVSS 3.1 Score Docker installation DefectDojo integration User management Sample Reports PDF Sample HTML Sample MD Sample CSV Sample","title":"PeTeReport"},{"location":"#petereport","text":"PeTeReport ( Pe n Te st Report ) is an open-source application vulnerability reporting tool designed to assist pentesting/redteaming efforts, by simplifying the task of writting and generation of reports. Focused in product security, the tool help security researchers and pentesters to provide detailed findings, appendix, attack paths and manage a finding template database to avoid wasting time spent in the reporting phase. PeTeReport ( Pe n Te st Report ) is written in Django and Python 3 with the aim to help pentesters to manage a finding repository, write reports (in Markdown) and generate reports in different formats (HTML, CSV, PDF, Jupyter and Markdown).","title":"PeTeReport"},{"location":"#architecture","text":"","title":"Architecture"},{"location":"#features","text":"Customizable reports output Customizable reports templates Findings template database Possibility to add appendix to findings Possibility to add attack trees Deciduous to findings HTML Output format CSV Output format PDF Output format Jupyter Notebook Output format Markdown Output format CVSS 3.1 Score Docker installation DefectDojo integration User management","title":"Features"},{"location":"#sample-reports","text":"PDF Sample HTML Sample MD Sample CSV Sample","title":"Sample Reports"},{"location":"appendix/","text":"Appendix The appendix module facilitate the management of appendix that can be linked to a finding. An appendix is defined by: Finding Appendix Title Appendix Description List of Appendix Add Appendix","title":"Appendix"},{"location":"appendix/#appendix","text":"The appendix module facilitate the management of appendix that can be linked to a finding. An appendix is defined by: Finding Appendix Title Appendix Description","title":"Appendix"},{"location":"appendix/#list-of-appendix","text":"","title":"List of Appendix"},{"location":"appendix/#add-appendix","text":"","title":"Add Appendix"},{"location":"attacktree/","text":"Attack Trees The Security decision trees module facilitate the management of attack path that can be linked to a finding. An attack trees is defined by: Finding Attack Tree Title Attack Tree Definition The visualization of the attack path of a vulnerability or finding has been implemented adapting a web app that simplifies building attack decision trees as described in the Security Chaos Engineering report: Deciduous So all the credits to @swagitda . How to / getting started guide: https://swagitda.com/blog/posts/deciduous-attack-tree-app/ Also if needed to attach an Attack Path Planner I recommend you to take a look into: Walter: Attack Path Planner List of Attack Trees Add Attack Tree","title":"Attack tree"},{"location":"attacktree/#attack-trees","text":"The Security decision trees module facilitate the management of attack path that can be linked to a finding. An attack trees is defined by: Finding Attack Tree Title Attack Tree Definition The visualization of the attack path of a vulnerability or finding has been implemented adapting a web app that simplifies building attack decision trees as described in the Security Chaos Engineering report: Deciduous So all the credits to @swagitda . How to / getting started guide: https://swagitda.com/blog/posts/deciduous-attack-tree-app/ Also if needed to attach an Attack Path Planner I recommend you to take a look into: Walter: Attack Path Planner","title":"Attack Trees"},{"location":"attacktree/#list-of-attack-trees","text":"","title":"List of Attack Trees"},{"location":"attacktree/#add-attack-tree","text":"","title":"Add Attack Tree"},{"location":"default_creds/","text":"Administrator: admin/P3t3r3p0rt Viewer: viewer/v13w3r","title":"Default Credentials"},{"location":"django/","text":"Django installation Prerequisites PeTeReport requires Python \u2265 3.8. Recommended installation requires pip . As a base requirement, the following packages are needed: Ubuntu/Debian: $ sudo apt-get install python3-pip python3-venv build-essential OpenSuse: $ sudo zypper install python3-devel gcc CentOS: $ sudo yum install python3-devel gcc Environment It is strongly recommended to set up the installation in a virtual environment (Pipenv) : Pipenv Linux: $ sudo apt-get install pipenv pip: $ python3 -m pip install pipenv MAC: $ brew install pipenv Dependencies Easiest way in Linux (ubuntu): $ sudo bash scripts/ubuntu_environment_install.sh Latex Linux: $ sudo apt-get install texlive-full Mac: $ brew remove basictex $ brew cask install mactex Pandoc Linux: $ sudo apt-get install pandoc $ sudo apt-get install python3-pypandoc Mac: $ brew install pandoc $ brew install pandoc-citeproc Eisvogel $ python3 -m pip install pandoc-latex-environment Download the latest version of the Eisvogel template from the release page. Extract the downloaded ZIP archive and open the folder. Move the template eisvogel.tex to your pandoc templates folder and rename the file to eisvogel.latex. The location of the templates folder depends on your operating system: /Users/$USER/.pandoc/templates/eisvogel.latex or /home/$USER/.pandoc/templates PeTeReport Clone the project and cd into PeTeReport: cd petereport/ Create a new virtual environment and installing dependencies: pipenv install Run the virtual environment: pipenv shell Go to Django PeTeReport: cd django/ Create the database: python manage.py migrate Make the latest database changes: python manage.py makemigrations Super user admin/P3t3r3p0rt will be created, but you can create a new super user: python manage.py createsuperuser Populate the CWE data python manage.py loaddata config/cwe-list.json Start the server Run the virtual environment: pipenv shell Go to Django PeTeReport: cd django/ Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000 Go to http://127.0.0.1:8000/ Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file Try harder Create a report Close up and stop the server: Ctrl + C Upgrade PeTeReport Stop the server if it's running: Ctrl + C Pull the latest code base via git: git pull or download the source and replace the files. Setup any additional dependencies: pipenv install Run the virtual environment: pipenv shell Make the latest database changes: python manage.py makemigrations Make the latest database changes: python manage.py migrate Start the server: python manage.py runserver Try harder again Clean PeTeReport Stop the server if it's running: Ctrl + C Run the virtual environment: pipenv shell Go to Django PeTeReport: cd django/ Run cleaner: python clean.py Make the latest database changes: python manage.py makemigrations Make the latest database changes: python manage.py migrate Start the server: python manage.py runserver Try harder again Configuration Stop the server if it's running: Ctrl + C Customize reports and configuration in django/config/petereport_config.py Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000","title":"Django"},{"location":"django/#django-installation","text":"","title":"Django installation"},{"location":"django/#prerequisites","text":"PeTeReport requires Python \u2265 3.8. Recommended installation requires pip . As a base requirement, the following packages are needed: Ubuntu/Debian: $ sudo apt-get install python3-pip python3-venv build-essential OpenSuse: $ sudo zypper install python3-devel gcc CentOS: $ sudo yum install python3-devel gcc","title":"Prerequisites"},{"location":"django/#environment","text":"It is strongly recommended to set up the installation in a virtual environment (Pipenv) :","title":"Environment"},{"location":"django/#pipenv","text":"Linux: $ sudo apt-get install pipenv pip: $ python3 -m pip install pipenv MAC: $ brew install pipenv","title":"Pipenv"},{"location":"django/#dependencies","text":"Easiest way in Linux (ubuntu): $ sudo bash scripts/ubuntu_environment_install.sh","title":"Dependencies"},{"location":"django/#latex","text":"Linux: $ sudo apt-get install texlive-full Mac: $ brew remove basictex $ brew cask install mactex","title":"Latex"},{"location":"django/#pandoc","text":"Linux: $ sudo apt-get install pandoc $ sudo apt-get install python3-pypandoc Mac: $ brew install pandoc $ brew install pandoc-citeproc","title":"Pandoc"},{"location":"django/#eisvogel","text":"$ python3 -m pip install pandoc-latex-environment Download the latest version of the Eisvogel template from the release page. Extract the downloaded ZIP archive and open the folder. Move the template eisvogel.tex to your pandoc templates folder and rename the file to eisvogel.latex. The location of the templates folder depends on your operating system: /Users/$USER/.pandoc/templates/eisvogel.latex or /home/$USER/.pandoc/templates","title":"Eisvogel"},{"location":"django/#petereport","text":"Clone the project and cd into PeTeReport: cd petereport/ Create a new virtual environment and installing dependencies: pipenv install Run the virtual environment: pipenv shell Go to Django PeTeReport: cd django/ Create the database: python manage.py migrate Make the latest database changes: python manage.py makemigrations Super user admin/P3t3r3p0rt will be created, but you can create a new super user: python manage.py createsuperuser Populate the CWE data python manage.py loaddata config/cwe-list.json","title":"PeTeReport"},{"location":"django/#start-the-server","text":"Run the virtual environment: pipenv shell Go to Django PeTeReport: cd django/ Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000 Go to http://127.0.0.1:8000/ Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file Try harder Create a report Close up and stop the server: Ctrl + C","title":"Start the server"},{"location":"django/#upgrade-petereport","text":"Stop the server if it's running: Ctrl + C Pull the latest code base via git: git pull or download the source and replace the files. Setup any additional dependencies: pipenv install Run the virtual environment: pipenv shell Make the latest database changes: python manage.py makemigrations Make the latest database changes: python manage.py migrate Start the server: python manage.py runserver Try harder again","title":"Upgrade PeTeReport"},{"location":"django/#clean-petereport","text":"Stop the server if it's running: Ctrl + C Run the virtual environment: pipenv shell Go to Django PeTeReport: cd django/ Run cleaner: python clean.py Make the latest database changes: python manage.py makemigrations Make the latest database changes: python manage.py migrate Start the server: python manage.py runserver Try harder again","title":"Clean PeTeReport"},{"location":"django/#configuration","text":"Stop the server if it's running: Ctrl + C Customize reports and configuration in django/config/petereport_config.py Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000","title":"Configuration"},{"location":"docker/","text":"Docker Environment $ sudo apt install docker.io docker-compose Deployment Clone repository $ cd /opt $ git clone https://github.com/1modm/petereport $ cd petereport Customize reports and configuration in django/config/petereport_config.py Build environment $ docker-compose up --build Go to https://127.0.0.1/ Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file Try harder Create a report","title":"Docker"},{"location":"docker/#docker","text":"","title":"Docker"},{"location":"docker/#environment","text":"$ sudo apt install docker.io docker-compose","title":"Environment"},{"location":"docker/#deployment","text":"Clone repository $ cd /opt $ git clone https://github.com/1modm/petereport $ cd petereport Customize reports and configuration in django/config/petereport_config.py Build environment $ docker-compose up --build Go to https://127.0.0.1/ Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file Try harder Create a report","title":"Deployment"},{"location":"findings/","text":"Findings The finding module facilitate the management of findings in the reports. A finding is defined by: Title Status Severity CVSS Score CWE Description Location Impact Recommendation References Appendix Attack path List of findings Create new findings Add Finding from Templates Can be added findings to a report from the template list previously created. Import Findings from DefectDojo We can import the findings from DefectDojo , first of all we need to edit the configuration file in order to add the API endpoint and the API key of our DefectDojo deployment. Edit configuration in django/config/petereport_config.py DEFECTDOJO_CONFIG = { 'DefectDojoURL': 'https://demo.defectdojo.org', 'apiKey': 'Token Key' # Format Token Key } Import Findings from CSV Can be imported from a CSV findings following the next format: // Comma-separated values (CSV) file format \"ID\",\"Status\",\"Title\",\"Severity\",\"CVSS Base Score\",\"CVSS Score\",\"CWE\",\"Description\",\"Location\",\"Impact\",\"Recommendation\",\"References\",\"Appendix\",\"Appendix Description\" \"2834q345-b24e-4ghf-r86d-ftue38af5480\",\"Open\",\"Finding 1\",\"Low\",\"3.7 (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N)\",\"3.7\",\"73\",\"Description\",\"127.0.0.1\",\"Impact\",\"Recommendation\",\"References\",\"Appendix\",\"Appendix Description\" CWE List When a finding is created must be selected a CWE in order to create a category of findings, for reference has been populated the next CWE list from Mitre: Software Development Hardware Design Research Concepts","title":"Findings"},{"location":"findings/#findings","text":"The finding module facilitate the management of findings in the reports. A finding is defined by: Title Status Severity CVSS Score CWE Description Location Impact Recommendation References Appendix Attack path","title":"Findings"},{"location":"findings/#list-of-findings","text":"","title":"List of findings"},{"location":"findings/#create-new-findings","text":"","title":"Create new findings"},{"location":"findings/#add-finding-from-templates","text":"Can be added findings to a report from the template list previously created.","title":"Add Finding from Templates"},{"location":"findings/#import-findings-from-defectdojo","text":"We can import the findings from DefectDojo , first of all we need to edit the configuration file in order to add the API endpoint and the API key of our DefectDojo deployment. Edit configuration in django/config/petereport_config.py DEFECTDOJO_CONFIG = { 'DefectDojoURL': 'https://demo.defectdojo.org', 'apiKey': 'Token Key' # Format Token Key }","title":"Import Findings from DefectDojo"},{"location":"findings/#import-findings-from-csv","text":"Can be imported from a CSV findings following the next format: // Comma-separated values (CSV) file format \"ID\",\"Status\",\"Title\",\"Severity\",\"CVSS Base Score\",\"CVSS Score\",\"CWE\",\"Description\",\"Location\",\"Impact\",\"Recommendation\",\"References\",\"Appendix\",\"Appendix Description\" \"2834q345-b24e-4ghf-r86d-ftue38af5480\",\"Open\",\"Finding 1\",\"Low\",\"3.7 (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N)\",\"3.7\",\"73\",\"Description\",\"127.0.0.1\",\"Impact\",\"Recommendation\",\"References\",\"Appendix\",\"Appendix Description\"","title":"Import Findings from CSV"},{"location":"findings/#cwe-list","text":"When a finding is created must be selected a CWE in order to create a category of findings, for reference has been populated the next CWE list from Mitre: Software Development Hardware Design Research Concepts","title":"CWE List"},{"location":"products/","text":"Products The products module facilitate the management of products. A product is defined by: Product Name Product Description List of products Create new products","title":"Products"},{"location":"products/#products","text":"The products module facilitate the management of products. A product is defined by: Product Name Product Description","title":"Products"},{"location":"products/#list-of-products","text":"","title":"List of products"},{"location":"products/#create-new-products","text":"","title":"Create new products"},{"location":"reports/","text":"Reports The report module facilitate the management of products. A report is defined by: Product Report ID Report Title Executive summary Scope Out of scope Methodology Recommendation Report date List of Reports Create new reports Report Details","title":"Reports"},{"location":"reports/#reports","text":"The report module facilitate the management of products. A report is defined by: Product Report ID Report Title Executive summary Scope Out of scope Methodology Recommendation Report date","title":"Reports"},{"location":"reports/#list-of-reports","text":"","title":"List of Reports"},{"location":"reports/#create-new-reports","text":"","title":"Create new reports"},{"location":"reports/#report-details","text":"","title":"Report Details"},{"location":"users/","text":"User management The user module facilitate the management of users and roles in the application. There are 2 builtins roles: administrator and viewer. Administrator role has full permissions access Viewer role Projects: view Reports: view, generate output Findings: view Finding templates: view List of users and roles Create new users","title":"User management"},{"location":"users/#user-management","text":"The user module facilitate the management of users and roles in the application. There are 2 builtins roles: administrator and viewer. Administrator role has full permissions access Viewer role Projects: view Reports: view, generate output Findings: view Finding templates: view","title":"User management"},{"location":"users/#list-of-users-and-roles","text":"","title":"List of users and roles"},{"location":"users/#create-new-users","text":"","title":"Create new users"}]}
          \ No newline at end of file
          +{"config":{"indexing":"full","lang":["en"],"min_search_length":3,"prebuild_index":false,"separator":"[\\s\\-]+"},"docs":[{"location":"","text":"PeTeReport PeTeReport ( Pe n Te st Report ) is an open-source application vulnerability reporting tool designed to assist pentesting/redteaming efforts, by simplifying the task of writting and generation of reports. Focused in product security, the tool help security researchers and pentesters to provide detailed findings, appendix, attack paths and manage a finding template database to avoid wasting time spent in the reporting phase. PeTeReport ( Pe n Te st Report ) is written in Django and Python 3 with the aim to help pentesters to manage a finding repository, write reports (in Markdown) and generate reports in different formats (HTML, CSV, PDF, Jupyter and Markdown). Pentesting content management and reporting tool Architecture Features Customizable reports output Customizable reports templates Findings template database Possibility to add appendix to findings Possibility to add attack trees Deciduous to findings HTML Output format CSV Output format PDF Output format Jupyter Notebook Output format Markdown Output format CVSS 3.1 Score Docker installation DefectDojo integration User management Sample Reports PDF Sample HTML Sample MD Sample CSV Sample","title":"PeTeReport"},{"location":"#petereport","text":"PeTeReport ( Pe n Te st Report ) is an open-source application vulnerability reporting tool designed to assist pentesting/redteaming efforts, by simplifying the task of writting and generation of reports. Focused in product security, the tool help security researchers and pentesters to provide detailed findings, appendix, attack paths and manage a finding template database to avoid wasting time spent in the reporting phase. PeTeReport ( Pe n Te st Report ) is written in Django and Python 3 with the aim to help pentesters to manage a finding repository, write reports (in Markdown) and generate reports in different formats (HTML, CSV, PDF, Jupyter and Markdown).","title":"PeTeReport"},{"location":"#architecture","text":"","title":"Architecture"},{"location":"#features","text":"Customizable reports output Customizable reports templates Findings template database Possibility to add appendix to findings Possibility to add attack trees Deciduous to findings HTML Output format CSV Output format PDF Output format Jupyter Notebook Output format Markdown Output format CVSS 3.1 Score Docker installation DefectDojo integration User management","title":"Features"},{"location":"#sample-reports","text":"PDF Sample HTML Sample MD Sample CSV Sample","title":"Sample Reports"},{"location":"appendix/","text":"Appendix The appendix module facilitate the management of appendix that can be linked to a finding. An appendix is defined by: Finding Appendix Title Appendix Description List of Appendix Add Appendix","title":"Appendix"},{"location":"appendix/#appendix","text":"The appendix module facilitate the management of appendix that can be linked to a finding. An appendix is defined by: Finding Appendix Title Appendix Description","title":"Appendix"},{"location":"appendix/#list-of-appendix","text":"","title":"List of Appendix"},{"location":"appendix/#add-appendix","text":"","title":"Add Appendix"},{"location":"attacktree/","text":"Attack Trees The Security decision trees module facilitate the management of attack path that can be linked to a finding. An attack trees is defined by: Finding Attack Tree Title Attack Tree Definition The visualization of the attack path of a vulnerability or finding has been implemented adapting a web app that simplifies building attack decision trees as described in the Security Chaos Engineering report: Deciduous So all the credits to @swagitda . How to / getting started guide: https://swagitda.com/blog/posts/deciduous-attack-tree-app/ Also if needed to attach an Attack Path Planner I recommend you to take a look into: Walter: Attack Path Planner List of Attack Trees Add Attack Tree","title":"Attack tree"},{"location":"attacktree/#attack-trees","text":"The Security decision trees module facilitate the management of attack path that can be linked to a finding. An attack trees is defined by: Finding Attack Tree Title Attack Tree Definition The visualization of the attack path of a vulnerability or finding has been implemented adapting a web app that simplifies building attack decision trees as described in the Security Chaos Engineering report: Deciduous So all the credits to @swagitda . How to / getting started guide: https://swagitda.com/blog/posts/deciduous-attack-tree-app/ Also if needed to attach an Attack Path Planner I recommend you to take a look into: Walter: Attack Path Planner","title":"Attack Trees"},{"location":"attacktree/#list-of-attack-trees","text":"","title":"List of Attack Trees"},{"location":"attacktree/#add-attack-tree","text":"","title":"Add Attack Tree"},{"location":"default_creds/","text":"Administrator: admin/P3t3r3p0rt Viewer: viewer/v13w3r","title":"Default Credentials"},{"location":"django/","text":"Django installation Prerequisites PeTeReport requires Python \u2265 3.8. Recommended installation requires pip . As a base requirement, the following packages are needed: Ubuntu/Debian: $ sudo apt-get install python3-pip python3-venv build-essential OpenSuse: $ sudo zypper install python3-devel gcc CentOS: $ sudo yum install python3-devel gcc Environment It is strongly recommended to set up the installation in a virtual environment (Pipenv) : Pipenv Linux: $ sudo apt-get install pipenv pip: $ python3 -m pip install pipenv MAC: $ brew install pipenv Dependencies Easiest way in Linux (ubuntu): $ sudo bash scripts/ubuntu_environment_install.sh Latex Linux: $ sudo apt-get install texlive-full Mac: $ brew remove basictex $ brew cask install mactex Pandoc Linux: $ sudo apt-get install pandoc $ sudo apt-get install python3-pypandoc Mac: $ brew install pandoc $ brew install pandoc-citeproc Eisvogel $ python3 -m pip install pandoc-latex-environment Download the latest version of the Eisvogel template from the release page. Extract the downloaded ZIP archive and open the folder. Move the template eisvogel.tex to your pandoc templates folder and rename the file to eisvogel.latex. The location of the templates folder depends on your operating system: /Users/$USER/.pandoc/templates/eisvogel.latex or /home/$USER/.pandoc/templates PeTeReport Clone the project and cd into PeTeReport: cd petereport/ Create a new virtual environment and installing dependencies: pipenv install Run the virtual environment: pipenv shell Go to Django PeTeReport App: cd app/ Create the database: python manage.py migrate Make the latest database changes: python manage.py makemigrations Super user admin/P3t3r3p0rt will be created, but you can create a new super user: python manage.py createsuperuser Populate the CWE data python manage.py loaddata config/cwe-list.json Start the server Run the virtual environment: pipenv shell Go to Django PeTeReport App: cd app/ Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000 Go to http://127.0.0.1:8000/ Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file Try harder Create a report Close up and stop the server: Ctrl + C Upgrade PeTeReport Stop the server if it's running: Ctrl + C Pull the latest code base via git: git pull or download the source and replace the files. Setup any additional dependencies: pipenv install Run the virtual environment: pipenv shell Make the latest database changes: python manage.py makemigrations Make the latest database changes: python manage.py migrate Start the server: python manage.py runserver Try harder again Clean PeTeReport Stop the server if it's running: Ctrl + C Run the virtual environment: pipenv shell Go to Django PeTeReport App: cd app/ Run cleaner: python clean.py Make the latest database changes: python manage.py makemigrations Make the latest database changes: python manage.py migrate Start the server: python manage.py runserver Try harder again Configuration Stop the server if it's running: Ctrl + C Customize reports and configuration in app/config/petereport_config.py Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000","title":"Django"},{"location":"django/#django-installation","text":"","title":"Django installation"},{"location":"django/#prerequisites","text":"PeTeReport requires Python \u2265 3.8. Recommended installation requires pip . As a base requirement, the following packages are needed: Ubuntu/Debian: $ sudo apt-get install python3-pip python3-venv build-essential OpenSuse: $ sudo zypper install python3-devel gcc CentOS: $ sudo yum install python3-devel gcc","title":"Prerequisites"},{"location":"django/#environment","text":"It is strongly recommended to set up the installation in a virtual environment (Pipenv) :","title":"Environment"},{"location":"django/#pipenv","text":"Linux: $ sudo apt-get install pipenv pip: $ python3 -m pip install pipenv MAC: $ brew install pipenv","title":"Pipenv"},{"location":"django/#dependencies","text":"Easiest way in Linux (ubuntu): $ sudo bash scripts/ubuntu_environment_install.sh","title":"Dependencies"},{"location":"django/#latex","text":"Linux: $ sudo apt-get install texlive-full Mac: $ brew remove basictex $ brew cask install mactex","title":"Latex"},{"location":"django/#pandoc","text":"Linux: $ sudo apt-get install pandoc $ sudo apt-get install python3-pypandoc Mac: $ brew install pandoc $ brew install pandoc-citeproc","title":"Pandoc"},{"location":"django/#eisvogel","text":"$ python3 -m pip install pandoc-latex-environment Download the latest version of the Eisvogel template from the release page. Extract the downloaded ZIP archive and open the folder. Move the template eisvogel.tex to your pandoc templates folder and rename the file to eisvogel.latex. The location of the templates folder depends on your operating system: /Users/$USER/.pandoc/templates/eisvogel.latex or /home/$USER/.pandoc/templates","title":"Eisvogel"},{"location":"django/#petereport","text":"Clone the project and cd into PeTeReport: cd petereport/ Create a new virtual environment and installing dependencies: pipenv install Run the virtual environment: pipenv shell Go to Django PeTeReport App: cd app/ Create the database: python manage.py migrate Make the latest database changes: python manage.py makemigrations Super user admin/P3t3r3p0rt will be created, but you can create a new super user: python manage.py createsuperuser Populate the CWE data python manage.py loaddata config/cwe-list.json","title":"PeTeReport"},{"location":"django/#start-the-server","text":"Run the virtual environment: pipenv shell Go to Django PeTeReport App: cd app/ Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000 Go to http://127.0.0.1:8000/ Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file Try harder Create a report Close up and stop the server: Ctrl + C","title":"Start the server"},{"location":"django/#upgrade-petereport","text":"Stop the server if it's running: Ctrl + C Pull the latest code base via git: git pull or download the source and replace the files. Setup any additional dependencies: pipenv install Run the virtual environment: pipenv shell Make the latest database changes: python manage.py makemigrations Make the latest database changes: python manage.py migrate Start the server: python manage.py runserver Try harder again","title":"Upgrade PeTeReport"},{"location":"django/#clean-petereport","text":"Stop the server if it's running: Ctrl + C Run the virtual environment: pipenv shell Go to Django PeTeReport App: cd app/ Run cleaner: python clean.py Make the latest database changes: python manage.py makemigrations Make the latest database changes: python manage.py migrate Start the server: python manage.py runserver Try harder again","title":"Clean PeTeReport"},{"location":"django/#configuration","text":"Stop the server if it's running: Ctrl + C Customize reports and configuration in app/config/petereport_config.py Start the django server: python manage.py runserver or python manage.py runserver 0.0.0.0:8000","title":"Configuration"},{"location":"docker/","text":"Docker Environment $ sudo apt install docker.io docker-compose Deployment Clone repository $ cd /opt $ git clone https://github.com/1modm/petereport $ cd petereport Customize reports and configuration in app/config/petereport_config.py Build environment $ docker-compose up --build Go to https://127.0.0.1/ Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file Try harder Create a report","title":"Docker"},{"location":"docker/#docker","text":"","title":"Docker"},{"location":"docker/#environment","text":"$ sudo apt install docker.io docker-compose","title":"Environment"},{"location":"docker/#deployment","text":"Clone repository $ cd /opt $ git clone https://github.com/1modm/petereport $ cd petereport Customize reports and configuration in app/config/petereport_config.py Build environment $ docker-compose up --build Go to https://127.0.0.1/ Login with any of users created admin/P3t3r3p0rt (administrator) and viewer/v13w3r (viewer) or the user credentials configured in the configuration file Try harder Create a report","title":"Deployment"},{"location":"findings/","text":"Findings The finding module facilitate the management of findings in the reports. A finding is defined by: Title Status Severity CVSS Score CWE Description Location Impact Recommendation References Appendix Attack path List of findings Create new findings Add Finding from Templates Can be added findings to a report from the template list previously created. Import Findings from DefectDojo We can import the findings from DefectDojo , first of all we need to edit the configuration file in order to add the API endpoint and the API key of our DefectDojo deployment. Edit configuration in app/config/petereport_config.py DEFECTDOJO_CONFIG = { 'DefectDojoURL': 'https://demo.defectdojo.org', 'apiKey': 'Token Key' # Format Token Key } Import Findings from CSV Can be imported from a CSV findings following the next format: // Comma-separated values (CSV) file format \"ID\",\"Status\",\"Title\",\"Severity\",\"CVSS Base Score\",\"CVSS Score\",\"CWE\",\"Description\",\"Location\",\"Impact\",\"Recommendation\",\"References\",\"Appendix\",\"Appendix Description\" \"2834q345-b24e-4ghf-r86d-ftue38af5480\",\"Open\",\"Finding 1\",\"Low\",\"3.7 (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N)\",\"3.7\",\"73\",\"Description\",\"127.0.0.1\",\"Impact\",\"Recommendation\",\"References\",\"Appendix\",\"Appendix Description\" CWE List When a finding is created must be selected a CWE in order to create a category of findings, for reference has been populated the next CWE list from Mitre: Software Development Hardware Design Research Concepts","title":"Findings"},{"location":"findings/#findings","text":"The finding module facilitate the management of findings in the reports. A finding is defined by: Title Status Severity CVSS Score CWE Description Location Impact Recommendation References Appendix Attack path","title":"Findings"},{"location":"findings/#list-of-findings","text":"","title":"List of findings"},{"location":"findings/#create-new-findings","text":"","title":"Create new findings"},{"location":"findings/#add-finding-from-templates","text":"Can be added findings to a report from the template list previously created.","title":"Add Finding from Templates"},{"location":"findings/#import-findings-from-defectdojo","text":"We can import the findings from DefectDojo , first of all we need to edit the configuration file in order to add the API endpoint and the API key of our DefectDojo deployment. Edit configuration in app/config/petereport_config.py DEFECTDOJO_CONFIG = { 'DefectDojoURL': 'https://demo.defectdojo.org', 'apiKey': 'Token Key' # Format Token Key }","title":"Import Findings from DefectDojo"},{"location":"findings/#import-findings-from-csv","text":"Can be imported from a CSV findings following the next format: // Comma-separated values (CSV) file format \"ID\",\"Status\",\"Title\",\"Severity\",\"CVSS Base Score\",\"CVSS Score\",\"CWE\",\"Description\",\"Location\",\"Impact\",\"Recommendation\",\"References\",\"Appendix\",\"Appendix Description\" \"2834q345-b24e-4ghf-r86d-ftue38af5480\",\"Open\",\"Finding 1\",\"Low\",\"3.7 (CVSS:3.0/AV:N/AC:H/PR:N/UI:N/S:U/C:L/I:N/A:N)\",\"3.7\",\"73\",\"Description\",\"127.0.0.1\",\"Impact\",\"Recommendation\",\"References\",\"Appendix\",\"Appendix Description\"","title":"Import Findings from CSV"},{"location":"findings/#cwe-list","text":"When a finding is created must be selected a CWE in order to create a category of findings, for reference has been populated the next CWE list from Mitre: Software Development Hardware Design Research Concepts","title":"CWE List"},{"location":"products/","text":"Products The products module facilitate the management of products. A product is defined by: Product Name Product Description List of products Create new products","title":"Products"},{"location":"products/#products","text":"The products module facilitate the management of products. A product is defined by: Product Name Product Description","title":"Products"},{"location":"products/#list-of-products","text":"","title":"List of products"},{"location":"products/#create-new-products","text":"","title":"Create new products"},{"location":"reports/","text":"Reports The report module facilitate the management of products. A report is defined by: Product Report ID Report Title Executive summary Scope Out of scope Methodology Recommendation Report date List of Reports Create new reports Report Details","title":"Reports"},{"location":"reports/#reports","text":"The report module facilitate the management of products. A report is defined by: Product Report ID Report Title Executive summary Scope Out of scope Methodology Recommendation Report date","title":"Reports"},{"location":"reports/#list-of-reports","text":"","title":"List of Reports"},{"location":"reports/#create-new-reports","text":"","title":"Create new reports"},{"location":"reports/#report-details","text":"","title":"Report Details"},{"location":"users/","text":"User management The user module facilitate the management of users and roles in the application. There are 2 builtins roles: administrator and viewer. Administrator role has full permissions access Viewer role Projects: view Reports: view, generate output Findings: view Finding templates: view List of users and roles Create new users","title":"User management"},{"location":"users/#user-management","text":"The user module facilitate the management of users and roles in the application. There are 2 builtins roles: administrator and viewer. Administrator role has full permissions access Viewer role Projects: view Reports: view, generate output Findings: view Finding templates: view","title":"User management"},{"location":"users/#list-of-users-and-roles","text":"","title":"List of users and roles"},{"location":"users/#create-new-users","text":"","title":"Create new users"}]}
          \ No newline at end of file
          diff --git a/docs/sitemap.xml b/docs/sitemap.xml
          index 1b98868..d287f6b 100644
          --- a/docs/sitemap.xml
          +++ b/docs/sitemap.xml
          @@ -2,52 +2,52 @@
           
               
                    https://1modm.github.io/petereport/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/appendix/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/attacktree/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/default_creds/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/django/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/docker/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/findings/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/products/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/reports/
          -         2021-09-12
          +         2021-09-16
                    daily
               
               
                    https://1modm.github.io/petereport/users/
          -         2021-09-12
          +         2021-09-16
                    daily
               
           
          \ No newline at end of file
          diff --git a/docs/sitemap.xml.gz b/docs/sitemap.xml.gz
          index b7cd121..4b7e212 100644
          Binary files a/docs/sitemap.xml.gz and b/docs/sitemap.xml.gz differ
          diff --git a/nginx/petereport.conf b/nginx/petereport.conf
          index 965c472..79ded04 100644
          --- a/nginx/petereport.conf
          +++ b/nginx/petereport.conf
          @@ -20,7 +20,7 @@ server {
               client_max_body_size 500M;
           
               location /static {
          -        alias /opt/petereport/django/petereport/static;
          +        alias /opt/petereport/app/petereport/static;
               }
           
               location / {