{% extends 'root/base.html' %}
{% load custom_tags %}
{% load static %}
{% block title %} Attachments and PO-Preview {% endblock %}
{% block maincontent %}
| Attachments | PO-Preview |
{% for attach in attachments %}
{{ attach.1 }}
{% endfor %}
|
{% for file in popdf %}
{% if file|check_is_file %}
{{ file.1 }}
{% else %}
{{file.1 }}
{% endif %}
{% endfor %}
|