Tag for simple embed video from youtube watch link. It can be modified to manage size of embedded video.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | from django import template
import re
register = template.Library()
class YoutubeNode(template.Node):
"""Convenient tag, allowing only having a normal watch link, from yotube,
embed video in html."""
def __init__(self, parsed_link):
self.parsed_link = parsed_link
def render(self, context):
del_it = re.compile('(&.*)')
replace_it = re.compile('watch\?v=')
link = self.parsed_link.render(context)
link = del_it.sub('', link)
link = replace_it.sub('embed/', link)
video = """<iframe width="540" height="432" src="%s"
frameborder="0" allowfullscreen></iframe>""" % link
return video
@register.tag
def youtube(parser, token):
parsed_link = parser.parse(('endyoutube',))
# first token it's closing tag. delete_first_token
# just delete it - del self.tokens[0];)
print type(parsed_link)
parser.delete_first_token()
return YoutubeNode(parsed_link)
|
More like this
- Template tag - list punctuation for a list of items by shapiromatron 10 months, 2 weeks ago
- JSONRequestMiddleware adds a .json() method to your HttpRequests by cdcarter 10 months, 3 weeks ago
- Serializer factory with Django Rest Framework by julio 1 year, 5 months ago
- Image compression before saving the new model / work with JPG, PNG by Schleidens 1 year, 6 months ago
- Help text hyperlinks by sa2812 1 year, 6 months ago
Comments
Please login first before commenting.