├── README.md
├── static
├── model.png
├── style.css
├── themes
│ └── default
│ │ └── assets
│ │ ├── fonts
│ │ ├── icons.eot
│ │ ├── icons.otf
│ │ ├── icons.ttf
│ │ ├── icons.woff
│ │ └── icons.woff2
│ │ └── images
│ │ └── flags.png
└── jquery.min.js
├── templates
├── model.png
├── index.html
├── reports.html
├── assessments.html
├── risk_acceptance.html
├── risk_report.html
├── controls_soa.html
├── layout.html
├── alignment.html
├── about.html
├── deliverables.html
├── report_process.html
└── analyse_process.html
├── Dockerfile
├── LICENSE
├── assessments
├── deliverables.json
├── schema.json
├── data.json
└── control_library.json
└── openisms.py
/README.md:
--------------------------------------------------------------------------------
1 | # openisms
2 | See https://github.com/Asbaek/openisms/wiki
3 |
--------------------------------------------------------------------------------
/static/model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Asbaek/openisms/HEAD/static/model.png
--------------------------------------------------------------------------------
/templates/model.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Asbaek/openisms/HEAD/templates/model.png
--------------------------------------------------------------------------------
/static/style.css:
--------------------------------------------------------------------------------
1 | .pusher {
2 | margin-bottom: 20px;
3 | }
4 |
5 | .site-menu {
6 | margin-bottom: 20px !important;
7 | }
8 |
--------------------------------------------------------------------------------
/static/themes/default/assets/fonts/icons.eot:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Asbaek/openisms/HEAD/static/themes/default/assets/fonts/icons.eot
--------------------------------------------------------------------------------
/static/themes/default/assets/fonts/icons.otf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Asbaek/openisms/HEAD/static/themes/default/assets/fonts/icons.otf
--------------------------------------------------------------------------------
/static/themes/default/assets/fonts/icons.ttf:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Asbaek/openisms/HEAD/static/themes/default/assets/fonts/icons.ttf
--------------------------------------------------------------------------------
/static/themes/default/assets/fonts/icons.woff:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Asbaek/openisms/HEAD/static/themes/default/assets/fonts/icons.woff
--------------------------------------------------------------------------------
/static/themes/default/assets/fonts/icons.woff2:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Asbaek/openisms/HEAD/static/themes/default/assets/fonts/icons.woff2
--------------------------------------------------------------------------------
/static/themes/default/assets/images/flags.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/Asbaek/openisms/HEAD/static/themes/default/assets/images/flags.png
--------------------------------------------------------------------------------
/templates/index.html:
--------------------------------------------------------------------------------
1 | {% extends "layout.html" %}
2 | {% block body %}
3 |
4 | Welcome to openISMS.
5 |
6 | Visit About for an overview.
7 | {% endblock %}
8 |
9 |
--------------------------------------------------------------------------------
/templates/reports.html:
--------------------------------------------------------------------------------
1 | {% extends "layout.html" %}
2 | {% block body %}
3 |
4 |