Require easy_thumbnails 2.4.1 and load easy_thumbnails_tags (#378)
* Require easy_thumbnails 2.4.1 and load easy_thumbnails_tags
This commit is contained in:
parent
0233ba5605
commit
22ead871ee
9 changed files with 10 additions and 7 deletions
|
@ -11,6 +11,7 @@ Contributors
|
||||||
------------
|
------------
|
||||||
|
|
||||||
* alex
|
* alex
|
||||||
|
* Bryan Marty
|
||||||
* Carlo Ascani
|
* Carlo Ascani
|
||||||
* Christoph Reimers
|
* Christoph Reimers
|
||||||
* cluster-master
|
* cluster-master
|
||||||
|
|
|
@ -22,6 +22,7 @@ History
|
||||||
* Improved admin filtering.
|
* Improved admin filtering.
|
||||||
* Added featured date to post.
|
* Added featured date to post.
|
||||||
* Fixed issue with urls in sitemap if apphook is not published
|
* Fixed issue with urls in sitemap if apphook is not published
|
||||||
|
* Use the easy_thumbnails_tags template tag. Require easy_thumbnails >= 2.4.1
|
||||||
|
|
||||||
|
|
||||||
*******************
|
*******************
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load i18n thumbnail cms_tags %}
|
{% load i18n easy_thumbnails_tags cms_tags %}
|
||||||
|
|
||||||
<article id="post-{{ post.slug }}" class="post-item">
|
<article id="post-{{ post.slug }}" class="post-item">
|
||||||
<header>
|
<header>
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load i18n thumbnail cms_tags %}
|
{% load i18n easy_thumbnails_tags cms_tags %}
|
||||||
|
|
||||||
<ul class="post-detail">
|
<ul class="post-detail">
|
||||||
{% if post.author %}
|
{% if post.author %}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load i18n thumbnail %}{% spaceless %}
|
{% load i18n easy_thumbnails_tags %}{% spaceless %}
|
||||||
<div class="plugin plugin-blog">
|
<div class="plugin plugin-blog">
|
||||||
<h3>{% trans "Authors" %}</h3>
|
<h3>{% trans "Authors" %}</h3>
|
||||||
<ul class="blog-authors">
|
<ul class="blog-authors">
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "djangocms_blog/base.html" %}
|
{% extends "djangocms_blog/base.html" %}
|
||||||
{% load i18n thumbnail cms_tags %}
|
{% load i18n easy_thumbnails_tags cms_tags %}
|
||||||
|
|
||||||
{% block canonical_url %}<link rel="canonical" href="{{ meta.url }}"/>{% endblock canonical_url %}
|
{% block canonical_url %}<link rel="canonical" href="{{ meta.url }}"/>{% endblock canonical_url %}
|
||||||
{% block title %}{{ post.get_title }}{% endblock %}
|
{% block title %}{{ post.get_title }}{% endblock %}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
{% load thumbnail cms_tags %}
|
{% load easy_thumbnails_tags cms_tags %}
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="{{ post.get_current_language }}" prefix="op: http://media.facebook.com/op#">
|
<html lang="{{ post.get_current_language }}" prefix="op: http://media.facebook.com/op#">
|
||||||
<head>
|
<head>
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
{% extends "djangocms_blog/base.html" %}
|
{% extends "djangocms_blog/base.html" %}
|
||||||
{% load i18n thumbnail %}{% spaceless %}
|
{% load i18n easy_thumbnails_tags %}{% spaceless %}
|
||||||
|
|
||||||
{% block canonical_url %}<link rel="canonical" href="{{ view.get_view_url }}"/>{% endblock canonical_url %}
|
{% block canonical_url %}<link rel="canonical" href="{{ view.get_view_url }}"/>{% endblock canonical_url %}
|
||||||
|
|
||||||
|
|
1
setup.py
1
setup.py
|
@ -36,6 +36,7 @@ setup(
|
||||||
'django-taggit-autosuggest',
|
'django-taggit-autosuggest',
|
||||||
'djangocms-text-ckeditor',
|
'djangocms-text-ckeditor',
|
||||||
'cmsplugin-filer>=1.0',
|
'cmsplugin-filer>=1.0',
|
||||||
|
'easy-thumbnails>=2.4.1',
|
||||||
'django-meta>=1.2',
|
'django-meta>=1.2',
|
||||||
'django-meta-mixin>=0.3',
|
'django-meta-mixin>=0.3',
|
||||||
'aldryn-apphooks-config>=0.2.6',
|
'aldryn-apphooks-config>=0.2.6',
|
||||||
|
|
Loading…
Reference in a new issue