(self)
| 478 | } |
| 479 | |
| 480 | def to_html(self): |
| 481 | template = loader.get_template(self.template) |
| 482 | context = self.get_html_context() |
| 483 | return template.render(context) |
| 484 | |
| 485 | def get_count(self, queryset): |
| 486 | """ |
nothing calls this directly
no test coverage detected