sS renderConceptDate(Concept cc) { if (cc == null) ret ""; S c = formatLocalDateWithSeconds(cc.created); S m = formatLocalDateWithSeconds(cc._modified); S s = "Created " + c; if (neq(c, m)) s += ", modified " + m; ret s; }