Module pandas_profiling.report.presentation.flavours.html.button

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


class HTMLButton(Button):
    def render(self):
        return templates.template("button.html").render(**self.content)

Classes

class HTMLButton (text, **kwargs)

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

Expand source code
class HTMLButton(Button):
    def render(self):
        return templates.template("button.html").render(**self.content)

Ancestors

Methods

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