Giter Site home page Giter Site logo

Comments (2)

gregmuellegger avatar gregmuellegger commented on May 29, 2024

Hi I think there is a misunderstanding of what the arguments after with are doing.
With with you can pass additional template variables into the template that is used to render the widget. The template is then responsible for rendering those template variables into actual attributes of the widget. So to make your example work, you would need to overwrite the template floppyforms/input.html with the following content:

<input type="{{ type }}" name="{{ name }}"{% if value %} value="{{ value }}"{% endif %}{% if required %} required{% endif %}{% include "floppyforms/attrs.html" %}{% if datalist %} list="{{ attrs.id }}_list"{% endif %}{% if placeholder %} placeholder="{{ placeholder }}"{% endif %}>{% if datalist %}
<datalist id="{{ attrs.id }}_list">{% for item in datalist %}
    <option value="{{ item }}">{% endfor %}
</datalist>{% endif %}

Please especially note the section: {% if placeholder %} placeholder="{{ placeholder }}"{% endif %} which I have added.

from django-floppyforms.

ghinch avatar ghinch commented on May 29, 2024

The documentation should probably be updated then, as both the sections about formconfig and formfield are saying that my original implementation would work.

However, even if I pass a dict called attrs that looks like {'placeholder':'foo'}, that looks like it should be getting passed to attrs.html and written out, correct? The reason I'm having trouble is that it's going to be quite difficult for me to determine in the template which formfield template I need to use (input, select, etc.), as I'm just making a generic formrow template, and want to pass through things like placeholders and classnames

from django-floppyforms.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.