Module pandas_profiling.report.presentation.flavours.html.collapse

Expand source code
from pandas_profiling.report.presentation.core import Collapse
from pandas_profiling.report.presentation.flavours.html import templates


class HTMLCollapse(Collapse):
    def render(self):
        return templates.template("collapse.html").render(**self.content)

Classes

class HTMLCollapse (button, item, **kwargs)

Helper class that provides a standard way to create an ABC using inheritance.

Expand source code
class HTMLCollapse(Collapse):
    def render(self):
        return templates.template("collapse.html").render(**self.content)

Ancestors

Methods

def render(self)
Expand source code
def render(self):
    return templates.template("collapse.html").render(**self.content)