If I have some value from angular $scope.id = '123'
, how can I use it in my jade template in node.js? I'd like to use it as part of the link.
p
| {{id}} // It does work...
form(name="Remove", action="/cam/{{id}}_method=DELETE", method="post")
// ...but it doesn't
button(type='submit')
| ready