码迷,mamicode.com
首页 > 其他好文 > 详细

自定制插件widget 组件

时间:2020-05-04 13:30:31      阅读:96      评论:0      收藏:0      [点我收藏+]

标签:label   cycle   inpu   temp   options   idg   src   closed   port   

技术图片
from django.forms.widgets import RadioSelect

class ColorRadioSelect(RadioSelect):
    # input_type = ‘radio‘
    # template_name = ‘django/forms/widgets/radio.html‘
    # option_template_name = ‘django/forms/widgets/radio_option.html‘

    template_name = widgets/radio.html
    option_template_name = widgets/radio_option.html
widget.py
技术图片
{% with id=widget.attrs.id %}
{#    定义id变量 id=widget.attrs.id#}
    <div{% if id %} id="{{ id }}"{% endif %}{% if widget.attrs.class %} class="{{ widget.attrs.class }}"{% endif %}>
        {% for group, options, index in widget.optgroups %}


        {% for option in options %}
            <label {% if option.attrs.id %}for=" {{ option.attrs.id }}"{% endif %}>
                {% include option.template_name with widget=option %}
            </label>

        {% endfor %}


        {% endfor %}
    </div>
{% endwith %}
radio.html
技术图片
{% include "django/forms/widgets/input.html" %}
<span class="cycle" style="background-color:{{ option.label }}"></span>
radio_option.html

 

自定制插件widget 组件

标签:label   cycle   inpu   temp   options   idg   src   closed   port   

原文地址:https://www.cnblogs.com/hude/p/12826055.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!