From 7beba125ac740bff3c0c4404bf92d855c7b4126b Mon Sep 17 00:00:00 2001 From: Roberto Rosario Date: Mon, 6 Apr 2015 02:44:17 -0400 Subject: [PATCH] Simplify document_print template --- .../templates/documents/document_print.html | 34 ++++--------------- 1 file changed, 6 insertions(+), 28 deletions(-) diff --git a/mayan/apps/documents/templates/documents/document_print.html b/mayan/apps/documents/templates/documents/document_print.html index 067c9fb9ba..0f957c9d2a 100644 --- a/mayan/apps/documents/templates/documents/document_print.html +++ b/mayan/apps/documents/templates/documents/document_print.html @@ -1,29 +1,7 @@ -{% load project_tags %} +{% extends 'appearance/base.html' %} - - - - - {% project_name %} - - - - - {% for page in pages %} -
- -
- {% endfor %} - - +{% block content_plain %} + {% for page in pages %} + + {% endfor %} +{% endblock %}