mirror of
https://github.com/ae-utbm/sith.git
synced 2024-11-16 19:23:27 +00:00
9 lines
378 B
Python
9 lines
378 B
Python
|
from debug_toolbar.panels.templates import TemplatesPanel as BaseTemplatesPanel
|
||
|
|
||
|
class TemplatesPanel(BaseTemplatesPanel):
|
||
|
def generate_stats(self, *args):
|
||
|
template = self.templates[0]['template']
|
||
|
if not hasattr(template, 'engine') and hasattr(template, 'backend'):
|
||
|
template.engine = template.backend
|
||
|
return super().generate_stats(*args)
|