I'm completely baffled by swig templating in node. How do I subtract two values?
Neither of the following works:
{{ stop - start }}
{{ stop|add(-start) }}
I ended up having to compute this in the view and pass it in. Is that the only way? I guess I could write my own subtract
filter, but that seems like a bad solution.