소스 검색

Merge pull request #446 from benjaminabel/patch-1

Fixed typo in Series plugin README
Justin Mayer 10 년 전
부모
커밋
263944b93a
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      series/Readme.md

+ 1 - 1
series/Readme.md

@@ -34,7 +34,7 @@ The plugin provides the following variables to your templates
 For example:
 
     {% if article.series %}
-        <p>This post is part {{ article.series.index }} of the "{{ article.series.series }}" series:</p>
+        <p>This post is part {{ article.series.index }} of the "{{ article.series.name }}" series:</p>
         <ol class="parts">
             {% for part_article in article.series.all %}
                 <li {% if part_article == article %}class="active"{% endif %}>