{% extends 'base.html' %} {% load input_field %} {% load step_order %} {% block title %}{{ block.super }}: POC{% endblock %} {% block progress %}{% include "poc-sidebar.html" %}{% endblock %} {% block content %}

Proof of Concept:File storage

{% csrf_token %}

Upload a file to store in Redis.

{{ form.file }}
{% if form.file.errors %} {% for err in form.file.errors %}{{ err }}{% endfor %} {% endif %} {% if validation_success %}No viruses found{% endif %}

Stored documents

{% for document in documents %} {% endfor %}
File name Redis key
{{ document.filename|default:'' }} {{ document.file.name }} Delete
{% endblock %} {% block formbuttons %} {% endblock %} {% block sidebarNav %} {% endblock %} {% block sidebar %} {% endblock %}