- Author:
- rbeck
- Posted:
- November 17, 2010
- Language:
- HTML/template
- Version:
- 1.2
- Score:
- 1 (after 1 ratings)
The example of the Image inlining template tag lib which inline images in the browser instead of making an Http request.
The lib is available at : http://djangosnippets.org/snippets/2268/
1 2 3 4 5 6 7 | {% load image_tags %}
{% embedded_img src="/media/images/002.gif" height="200px" width="200px" alt="{{my_var}}" %}
{% embedded_img src="{{MEDIA_URL}}upload/images/001.jpg" height="200px" width="200px" alt="001" %}
{% embedded_img src="upload/images/logo_corp_264.png" alt="corp" %}
{% embedded_img src="{{MEDIA_URL}}upload/images/001.jpg" width="200px" alt="lala" %}
{% embedded_img src="{{MEDIA_URL}}upload/images/001.jpg" height="200px" width="200px" alt="my image" %}
{% embedded_img src="{{MEDIA_URL}}upload/images/001.jpg" %}
|
More like this
- Bootstrap Accordian by Netplay4 5 years, 10 months ago
- Bootstrap theme for django-endless-pagination? by se210 8 years, 10 months ago
- Bootstrap theme for django-endless-pagination? by se210 8 years, 10 months ago
- Reusable form template with generic view by roldandvg 8 years, 11 months ago
- Pagination Django with Boostrap by guilegarcia 9 years, 1 month ago
Comments
Please login first before commenting.