Login

Pretty Print Template Tag

Author:
paulvrutledge
Posted:
May 22, 2014
Language:
Python
Version:
1.6
Score:
1 (after 1 ratings)

This defines a new template tag that lets you print your rendered templates (or partial templates) in html that has been prettified by beautiful soup. It is dependent on the beautiful soup library (bs4). Not recommended for production but it is helpful for development and serving readable html.

{% load whatever_template_file %}'

   <body>

     {% pretty %}
         <h1>Hello, world.</h1>
     {% endpretty %}

   </body>
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
from django.template import Node

class PrettyPrintNode(Node):
 
    def __init__(self, nodelist):
        self.nodelist = nodelist
 
    def render(self, context):
        from bs4 import BeautifulSoup
        html = BeautifulSoup(self.nodelist.render(context))
        return html.prettify()
 
 
@register.tag()
def pretty(parser,token):
 
    nodelist = parser.parse(('endpretty',))
    parser.delete_first_token()
    return PrettyPrintNode(nodelist)

More like this

  1. Template tag - list punctuation for a list of items by shapiromatron 3 months, 1 week ago
  2. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 3 months, 2 weeks ago
  3. Serializer factory with Django Rest Framework by julio 10 months, 1 week ago
  4. Image compression before saving the new model / work with JPG, PNG by Schleidens 11 months ago
  5. Help text hyperlinks by sa2812 11 months, 3 weeks ago

Comments

Please login first before commenting.