##// 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 {% else %}
27 {% else %}
28 <div class="post dead_post" id="{{ thread.thread.id }}">
28 <div class="post dead_post" id="{{ thread.thread.id }}">
29 {% endif %}
29 {% endif %}
30 {% if thread.thread.image.exists %}
30 {% if thread.thread.image %}
31 <div class="image">
31 <div class="image">
32 <a class="fancy"
32 <a class="fancy"
33 href="{{ thread.thread.image.url }}"><img
33 href="{{ thread.thread.image.url }}"><img
@@ -83,7 +83,7 b''
83 {% else %}
83 {% else %}
84 <div class="post dead_post" id="{{ post.id }}">
84 <div class="post dead_post" id="{{ post.id }}">
85 {% endif %}
85 {% endif %}
86 {% if post.image.exists %}
86 {% if post.image %}
87 <div class="image">
87 <div class="image">
88 <a class="fancy"
88 <a class="fancy"
89 href="{{ post.image.url }}"><img
89 href="{{ post.image.url }}"><img
@@ -10,7 +10,7 b''
10
10
11 {% block content %}
11 {% block content %}
12
12
13 {% if posts.exists %}
13 {% if posts %}
14 <div id="posts">
14 <div id="posts">
15 {% for post in posts %}
15 {% for post in posts %}
16 {% if bumpable %}
16 {% if bumpable %}
@@ -18,7 +18,7 b''
18 {% else %}
18 {% else %}
19 <div class="post dead_post" id="{{ post.id }}">
19 <div class="post dead_post" id="{{ post.id }}">
20 {% endif %}
20 {% endif %}
21 {% if post.image.exists %}
21 {% if post.image %}
22 <div class="image">
22 <div class="image">
23 <a
23 <a
24 class="fancy"
24 class="fancy"
General Comments 0
You need to be logged in to leave comments. Login now