{% extends "base.html" %} {% load i18n %} {% block title %} {# Translators: Title on Main Page #} {% trans "Result" as title %} {{ title }} {% endblock %} {% load custom_tags %} {% block content %} Upload another:
{% csrf_token %} {{ form }}

Result for File: {{ file }}

{% if result %} {% for item in result %} {% endfor %}
# Issuer Serial (Hex) Serial (Decimal)
{{ forloop.counter }}
    {% for key, value in item.issuer.items %}
  • {{ key }}: {{ value }}
  • {% endfor %}
{{ item.serial|hex_notation }} {{ item.serial }}
{% else %} Nothing found {% endif %}

{% endblock %} {% block js %} {% endblock %}