{% extends "base.html" %} {% block title %}Audyt IT - {{ company.name }} - Norda Biznes Partner{% endblock %} {% block extra_css %} {% endblock %} {% block content %}

Audyt Infrastruktury IT

{{ company.name }}

Analiza infrastruktury IT i bezpieczenstwa
Profil firmy {% if can_edit %} {% if audit_data %}Edytuj audyt{% else %}Wypelnij audyt{% endif %} {% endif %}
{% if audit_data %} {# Unified 5-level color scale: 0-29 red, 30-49 orange, 50-69 amber, 70-89 lime, 90-100 green #} {% set score = audit_data.overall_score or 0 %}
{{ score }} / 100
{% if score >= 90 %} Doskonala infrastruktura IT {% elif score >= 70 %} Dobra infrastruktura IT {% elif score >= 50 %} Przecietna infrastruktura IT {% elif score >= 30 %} Infrastruktura IT wymaga rozwoju {% else %} Slaba infrastruktura IT {% endif %}

{% if score >= 75 %} Firma posiada dojrzala infrastrukture IT z wysokim poziomem bezpieczenstwa. Doskonaly kandydat do wspolpracy. {% elif score >= 50 %} Solidna infrastruktura IT z dobrymi praktykami bezpieczenstwa. Potencjal do wspolpracy. {% elif score >= 25 %} Infrastruktura IT w fazie rozwoju. Warto zainwestowac w bezpieczenstwo i automatyzacje. {% else %} Podstawowa infrastruktura IT. Zalecane wdrozenie podstawowych srodkow bezpieczenstwa. {% endif %}

{{ audit_data.maturity_label }}
Ostatni audyt: {{ audit_data.audit_date|local_time('%d.%m.%Y') if audit_data.audit_date else 'Brak danych' }}
{% if audit_data.audit_source %}
Zrodlo: {{ audit_data.audit_source }}
{% endif %}

Szczegolowe wyniki

{% set overall = audit_data.overall_score %} {% set overall_class = 'good' if overall and overall >= 75 else ('medium' if overall and overall >= 50 else ('poor' if overall else 'none')) %}
Wynik ogolny
{{ overall if overall else '-' }}
{% set security = audit_data.security_score %} {% set security_class = 'good' if security and security >= 75 else ('medium' if security and security >= 50 else ('poor' if security else 'none')) %}
Bezpieczenstwo
{{ security if security else '-' }}
{% set collab = audit_data.collaboration_score %} {% set collab_class = 'good' if collab and collab >= 75 else ('medium' if collab and collab >= 50 else ('poor' if collab else 'none')) %}
Wspolpraca
{{ collab if collab else '-' }}
{% set compl = audit_data.completeness_score %} {% set compl_class = 'good' if compl and compl >= 75 else ('medium' if compl and compl >= 50 else ('poor' if compl else 'none')) %}
Kompletnosc
{{ compl if compl else '-' }}

Technologie i rozwiazania

{% if audit_data.has_azure_ad %}✓{% else %}✗{% endif %}
Azure AD / Entra ID
{% if audit_data.has_m365 %}✓{% else %}✗{% endif %}
Microsoft 365
{% if audit_data.has_google_workspace %}✓{% else %}✗{% endif %}
Google Workspace
{% if audit_data.has_local_ad %}✓{% else %}✗{% endif %}
Local Active Directory
{% if audit_data.has_edr %}✓{% else %}✗{% endif %}
EDR / XDR
{% if audit_data.has_mfa %}✓{% else %}✗{% endif %}
MFA (2FA)
{% if audit_data.has_vpn %}✓{% else %}✗{% endif %}
VPN
{% if audit_data.has_proxmox_pbs %}✓{% else %}✗{% endif %}
Proxmox PBS
{% if audit_data.has_dr_plan %}✓{% else %}✗{% endif %}
Plan Disaster Recovery
{% if audit_data.has_mdm %}✓{% else %}✗{% endif %}
MDM

Otwartosc na wspolprace

{% if audit_data.open_to_shared_licensing %} {% else %} {% endif %}
Wspoldzielone licencje M365
Grupowy zakup licencji Microsoft 365
{% if audit_data.open_to_backup_replication %} {% else %} {% endif %}
Replikacja backupow
Wymiana backupow miedzy firmami (off-site)
{% if audit_data.open_to_teams_federation %} {% else %} {% endif %}
Federacja Teams
Wspolna komunikacja przez MS Teams
{% if audit_data.open_to_shared_monitoring %} {% else %} {% endif %}
Wspolny monitoring
Wspolna infrastruktura Zabbix
{% if audit_data.open_to_collective_purchasing %} {% else %} {% endif %}
Zakupy grupowe
Wspolne zakupy sprzetu i uslug IT
{% if audit_data.open_to_knowledge_sharing %} {% else %} {% endif %}
Wymiana wiedzy
Spotkania i szkolenia IT
{% if audit_data.recommendations %}

Rekomendacje

{{ audit_data.recommendations }}

{% endif %} {% else %}

Brak danych audytu IT

Nie przeprowadzono jeszcze audytu infrastruktury IT dla tej firmy.

{% if can_edit %} Wypelnij formularz audytu {% endif %}
{% endif %} {% endblock %}