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