<% Poll.closetime %> |
macro renders the time a poll was closed |
Sourcecode in Poll/macros.js:
1: function closetime_macro(param) { 2: if (this.closed) { 3: if (!param.format) 4: param.format = "short"; 5: res.write(formatTimestamp(this.modifytime, param.format)); 6: } 7: return; 8: } |