Преглед изворни кода

fixed conditionals in usage example

from next_article to next_article_in_category, next_article_in_subcategory.
Tim Arnold пре 10 година
родитељ
комит
f2aeed121b
1 измењених фајлова са 6 додато и 6 уклоњено
  1. 6 6
      neighbors/Readme.rst

+ 6 - 6
neighbors/Readme.rst

@@ -36,7 +36,7 @@ Usage
             </a>
             </a>
         </li>
         </li>
     {% endif %}
     {% endif %}
-    {% if article.next_article %}
+    {% if article.next_article_in_category %}
         <li>
         <li>
             <a href="{{ SITEURL }}/{{ article.next_article_in_category.url}}">
             <a href="{{ SITEURL }}/{{ article.next_article_in_category.url}}">
                 {{ article.next_article_in_category.title }}
                 {{ article.next_article_in_category.title }}
@@ -63,17 +63,17 @@ Therefor the usage with subcategories is:
 .. code-block:: html+jinja
 .. code-block:: html+jinja
 
 
     <ul>
     <ul>
-    {% if article.prev_article_subcategory1 %}
+    {% if article.prev_article_in_subcategory1 %}
         <li>
         <li>
             <a href="{{ SITEURL }}/{{ article.prev_article_in_subcategory1.url}}">
             <a href="{{ SITEURL }}/{{ article.prev_article_in_subcategory1.url}}">
                 {{ article.prev_article_in_subcategory1.title }}
                 {{ article.prev_article_in_subcategory1.title }}
             </a>
             </a>
         </li>
         </li>
     {% endif %}
     {% endif %}
-    {% if article.next_article %}
+    {% if article.next_article_in_subcategory1 %}
         <li>
         <li>
-            <a href="{{ SITEURL }}/{{ article.next_article_subcategory1.url}}">
-                {{ article.next_article_subcategory1.title }}
+            <a href="{{ SITEURL }}/{{ article.next_article_in_subcategory1.url}}">
+                {{ article.next_article_in_subcategory1.title }}
             </a>
             </a>
         </li>
         </li>
     {% endif %}
     {% endif %}
@@ -86,7 +86,7 @@ Therefor the usage with subcategories is:
             </a>
             </a>
         </li>
         </li>
     {% endif %}
     {% endif %}
-    {% if article.next_article %}
+    {% if article.next_article_in_subcategory2 %}
         <li>
         <li>
             <a href="{{ SITEURL }}/{{ article.next_article_in_subcategory2.url}}">
             <a href="{{ SITEURL }}/{{ article.next_article_in_subcategory2.url}}">
                 {{ article.next_article_in_subcategory2.title }}
                 {{ article.next_article_in_subcategory2.title }}