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. Add Toggle Switch Widget to Django Forms by OgliariNatan 1 month, 2 weeks ago
  2. get_object_or_none by azwdevops 5 months, 1 week ago
  3. Mask sensitive data from logger by agusmakmun 7 months ago
  4. Template tag - list punctuation for a list of items by shapiromatron 1 year, 9 months ago
  5. JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 1 year, 9 months ago

Comments

Please login first before commenting.