Files
notifications-admin/app/main
Chris Hill-Scott cde7d781d5 Fix empty table message
Bug was happening because:

```python
bool(list())
>>> False
```

```python
bool((item for item in list()))
>>> True
```

i.e. generator expressions cast to boolean are `True`, even if they’re
empty – Python doesn’t evaluate them.

This was causing the functional tests to fail because it was taking too
long for any table rows to appear on the page.
2017-06-23 13:37:05 +01:00
..
2017-06-23 13:37:05 +01:00
2017-04-06 10:22:20 +01:00
2017-02-17 10:39:52 +00:00