{% extends 'base.html' %} {% load fontawesome_5 %} {% block content %}

App

{% if app %}
App name {{ app.name }}
Description {{ app.description }}
Created by {{ app.user }}
Scans
New Scan {% if scans %} {% if settings.VIRUSTOTAL_ENABLED %} {% endif %} {% for scan in scans %} {% for id, scan_data in scans_data.items %} {% if id == scan.id %} {% if settings.VIRUSTOTAL_ENABLED %} {% if scan_data.antivirus.malicious > 0 %} {% else %} {% endif %} {% endif %} {% endif %} {% endfor %} {% endfor %}
ID Description Apk name Version Created On Status ProgressVTFindings By Severity
{{ scan.id }} {{ scan.description }} {{ scan.apk_name }} {{ scan.version_code }} {{ scan.created_on }} {{ scan.status }} {{ scan.progress }} % {% fa5_icon 'shield-alt' color='red' %} {{ scan_data.antivirus.malicious }} {% fa5_icon 'shield-alt' color='green' %} {{ scan_data.antivirus.malicious }}{{ scan.findings }} {% for severity, number in scan_data.findings.items %} {% if severity == 'Critical' %} {% elif severity == 'High' %} {% elif severity == 'Medium'%} {% elif severity == 'Low' %} {% else %} {% endif %} {% endfor %}
{{ severity }} {% fa5_icon 'exclamation-circle' color='black' %} {{ number }} {% fa5_icon 'exclamation-circle' color='red' %} {{ number }} {% fa5_icon 'exclamation-circle' color='orange' %} {{ number }}{% fa5_icon 'exclamation-circle' color='blue' %} {{ number }}{% fa5_icon 'check-circle' color='green' %} {{ number }}
{% endif %} {% endif %} {% endblock %}