Add operator argument to `where` template function
authorTatsushi Demachi <tdemachi@gmail.com>
Sun, 4 Jan 2015 05:24:58 +0000 (14:24 +0900)
committerbep <bjorn.erik.pedersen@gmail.com>
Sun, 4 Jan 2015 11:15:17 +0000 (12:15 +0100)
commit0d17ee7ed4331513adb6e08f5697c4d803155655
tree5883f0ab24c10d9a99b6a6214c342debfab4577b
parentae9c25afc078677500478e2a948502e7e1ed4830
Add operator argument to `where` template function

It allows to use `where` template function like SQL `where` clause.
For example,

    {{ range where .Data.Pages "Type" "!=" "post" }}
        {{ .Content }}
    {{ end }}

Now these operators are implemented:

    =, ==, eq, !=, <>, ne, >=, ge, >, gt, <=, le, <, lt, in, not in

It also fixes `TestWhere` more readable
docs/content/templates/functions.md
tpl/template.go
tpl/template_test.go