@register_form_class(ButtonForm)
def button(self, btn_text="Button", btn_color="btn-blue", **kwargs):
template = Template(
"""
<button class="btn {{ btn_color }}">{{ btn_text }}</button>
""",
)
return template.render(Context({"btn_text": btn_text, "btn_color": btn_color}))
Param | Description | Input |
---|---|---|
Enter button text |
|
|
Select button color |
|