diff --git a/rapids/tables.py b/rapids/tables.py index 741fac88..bd7e71da 100755 --- a/rapids/tables.py +++ b/rapids/tables.py @@ -88,4 +88,13 @@ class RapidUserAnswerTable(tables.Table): "created", "updated", ) + + def __init__(self, data=None, *args, **kwargs): + super().__init__( + data.prefetch_related( + "abnormality", "region", "examination" + ), + *args, + **kwargs, + ) \ No newline at end of file