を含むDjango 1.5
アプリケーションでdjango-bootstrap-toolkit
は、次の html 結果が必要です。
<div class="input-append">
<input class="span2" type="number" id="offer_finance_vat" min="0" max="99" value="20">
<span class="add-on">%</span>
</div>
重要なのは、追加の「%」とtype="number"
、min
およびmax
ここに私のフォームコードがあります:
class FinanceForm(forms.Form):
vat = forms.DecimalField(
decimal_places=0,
label="Value added tax",
widget=BootstrapTextInput(append="%"),
initial=0,
min_value=0,
max_value=99
)
しかし、 htmltype
では、min
そしてmax
欠落しています。
step="2"
属性を取得する機会もありますか?
これは可能でしょうcrispy-forms
か?