0

templatetags.py

from django import template
from django.utils.safestring import mark_safe

register = template.Library()

@register.filter("as_span")

def as_span(ZergitForm):
    ZergitForm_as_span = ZergitForm.as_ul().replace("<ul", "<span").replace("</ul", "</span")
    ZergitForm_as_span = ZergitForm_as_span.replace("<li", "<span").replace("</li", "</span")
    return mark_safe(ZergitForm_as_span)

MultipleChoiceField を使用してい<li>ます<li><span>各スパンの入力ボタン。

templatetag の概念を使用して行うことは可能ですか。

ありがとう

4

2 に答える 2

0

これらのフィールドのウィジェットを置き換える方がよいでしょう。CheckboxSelectMultipleと を使用するを使用<ul>しているようです<li>。から派生するクラスを作成し、そのメソッドCheckboxSelectMultipleを置き換えます。render()

(django/forms/widgets.py から)

class CheckboxSelectMultiple(SelectMultiple):
    def render(self, name, value, attrs=None, choices=()):
        if value is None: value = []
        has_id = attrs and 'id' in attrs
        final_attrs = self.build_attrs(attrs, name=name)
        output = [u'<ul>']
        # Normalize to strings
        str_values = set([force_unicode(v) for v in value])
        for i, (option_value, option_label) in enumerate(chain(self.choices, choices)):
            # If an ID attribute was given, add a numeric index as a suffix,
            # so that the checkboxes don't all have the same ID attribute.
            if has_id:
                final_attrs = dict(final_attrs, id='%s_%s' % (attrs['id'], i))
                label_for = u' for="%s"' % final_attrs['id']
            else:
                label_for = ''

            cb = CheckboxInput(final_attrs, check_test=lambda value: value in str_values)
            option_value = force_unicode(option_value)
            rendered_cb = cb.render(name, option_value)
            option_label = conditional_escape(force_unicode(option_label))
            output.append(u'<li><label%s>%s %s</label></li>' % (label_for, rendered_cb, option_label))
        output.append(u'</ul>')
        return mark_safe(u'\n'.join(output))
于 2013-09-09T13:42:30.793 に答える
0

フォーム全体ではなくフィールドをレンダリングするときに、同様のことができます。

フィールドをレンダリングするために templatetag を作成する場合、その ID を使用して、それを削除するために ajax 呼び出しに対処する必要があります。

于 2013-09-09T10:28:45.727 に答える