Files
notifications-admin/app/main/views
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-07 12:25:33 +01:00
2017-06-14 16:53:16 +01:00
2017-06-23 13:37:05 +01:00
2017-04-12 18:19:55 +01:00
2017-06-01 14:27:55 +01:00