diff options
author | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-22 16:51:08 +0100 |
---|---|---|
committer | Matthew Lemon <lemon@matthewlemon.com> | 2020-10-22 16:52:07 +0100 |
commit | 15073041461d2656e9612ea2c461b221c4aefd4e (patch) | |
tree | 77fc4abd695ecc13bb304591cee50c1170fbc11a /ctrack/register/css.py | |
parent | 26ea2326bd4915e3be01bbee5c1e86a9410385e0 (diff) |
now processes a an empty event list
Diffstat (limited to 'ctrack/register/css.py')
-rw-r--r-- | ctrack/register/css.py | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/ctrack/register/css.py b/ctrack/register/css.py index 9b1f150..65a2c43 100644 --- a/ctrack/register/css.py +++ b/ctrack/register/css.py @@ -47,10 +47,19 @@ class Swimlane: ) def table_row_builder(self): + org = self.org_name if len(self.events) == 0: - raise ValueError("Cannot handle an empty list") + tmpl = "<td{0}>{1}</td>" + processing_these_attrs = [x.type_descriptor for x in self.__dict__.values() if isinstance(x, EventBase)] + empties = [{e: tmpl.format("", e)} for e in self.attrs_added if + e[:3] == "CAF" and e not in processing_these_attrs] + empties = sorted(empties, key=self._sort_func) + empties = [list(x.values())[0] for x in empties] + empties = "\n".join(empties) + return "".join( + ["<tr>\n", f"<td>{org}</td>\n", empties, "\n", "</tr>"] + ) tmpl = "<td{0}>{1}</td>" - org = self.events[0].related_caf.organisation.name processing_these_attrs = [x.type_descriptor for x in self.__dict__.values() if isinstance(x, EventBase)] empties = [{e: tmpl.format("", e)} for e in self.attrs_added if e[:3] == "CAF" and e not in processing_these_attrs] |