from ydata_profiling.report.presentation.core import Dropdown
from ydata_profiling.report.presentation.flavours.html import templates


class HTMLDropdown(Dropdown):
    def render(self) -> str:
        return templates.template("dropdown.html").render(**self.content)
