##// END OF EJS Templates
Removed previous "image optimization"/ It can be only used when getting models, not fields.
neko259 -
r166:7c153362 default
parent child Browse files
Show More
@@ -27,7 +27,7 b''
27 27 {% else %}
28 28 <div class="post dead_post" id="{{ thread.thread.id }}">
29 29 {% endif %}
30 {% if thread.thread.image.exists %}
30 {% if thread.thread.image %}
31 31 <div class="image">
32 32 <a class="fancy"
33 33 href="{{ thread.thread.image.url }}"><img
@@ -83,7 +83,7 b''
83 83 {% else %}
84 84 <div class="post dead_post" id="{{ post.id }}">
85 85 {% endif %}
86 {% if post.image.exists %}
86 {% if post.image %}
87 87 <div class="image">
88 88 <a class="fancy"
89 89 href="{{ post.image.url }}"><img
@@ -10,7 +10,7 b''
10 10
11 11 {% block content %}
12 12
13 {% if posts.exists %}
13 {% if posts %}
14 14 <div id="posts">
15 15 {% for post in posts %}
16 16 {% if bumpable %}
@@ -18,7 +18,7 b''
18 18 {% else %}
19 19 <div class="post dead_post" id="{{ post.id }}">
20 20 {% endif %}
21 {% if post.image.exists %}
21 {% if post.image %}
22 22 <div class="image">
23 23 <a
24 24 class="fancy"
General Comments 0
You need to be logged in to leave comments. Login now