{% extends "base.html" %} {% block title %}PDF Manager - DocuPDF{% endblock %} {% block styles %} {% endblock %} {% block content %}

PDF Manager

{% if request.args.get('search') %} {% endif %}
{% if all_view %} Show Folders {% else %} Show All PDFs {% endif %} Upload
{% if not all_view %} {% endif %}
{% if not all_view %} {% for folder in subfolders %}
{{ folder.name }}

{{ folder.created_at.strftime('%Y-%m-%d %I:%M %p') }}

{% endfor %} {% endif %} {% for pdf in pdfs %}

Subject: {{ pdf.subject or 'No subject' }}

{% if pdf.tags %} {% for tag in pdf.tags.split(',') %} {{ tag.strip() }} {% endfor %} {% endif %}

{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}