Browse Source

update docs.

Andreas Stenius 10 years ago
parent
commit
5e49d7a4bc
2 changed files with 6 additions and 1 deletions
  1. 4 1
      NEWS.md
  2. 2 0
      README.markdown

+ 4 - 1
NEWS.md

@@ -8,9 +8,12 @@ Standards](http://www.gnu.org/prep/standards/html_node/NEWS-File.html#NEWS-File)
 
 * Fix issue with generated code for `for` loops (#167).
 
-* Fix issue with using keywords as attributes (#177).
+* Fix issue with using keywords as attributes (#177), or as variables (#194).
 
 * Fix issue when including multiple templates extending a common base template (#176).
 
 * New `w` option for toggling compile time warnings. Currently, there is only one, `non_block_tag`,
   which is triggered on any non-block data in an extends-template.
+
+* Add missing features to the `cycle` tag (#195) (still missing
+  independtly stepping the cycle value).

+ 2 - 0
README.markdown

@@ -528,6 +528,8 @@ Differences from standard Django Template Language
 * Erlang specifics: Template variables may be prefixed with underscore
   (`_`) to avoid "unused variable" warnings (see
   [#164](https://github.com/erlydtl/erlydtl/issues/164)).
+* `cycle` tags do not support independently moving the cycle value
+  from the original loop.
 
 
 Tests