GithubHelp home page GithubHelp logo

Comments (3)

nferrari avatar nferrari commented on June 6, 2024

+1.
Did not figure out how to test a field type in the {% block row %} scope.

from django-floppyforms.

gregmuellegger avatar gregmuellegger commented on June 6, 2024

Hi, yes it's true there is no way at the moment to configure the formrow config based on the given widget types.

The problem in that regard is, that a {% formrow %} tag can take multiple fields like:

{% formrow form.username form.password %}

And if both fields are configured to have a different row template, what shall the formrow do then?
So I think we still should make it possible. We could have something like this:

{% formconfig row using "custom_row.html" for form.username form.password %}

This would than only match {% formrow form.username form.password %} but not {% formrow form.username %} nor {% formrow form.password %}.
Here an example on how to use it on a widgettype only:

{% formconfig row using "custom_row.html" for "DateInput" %}

Which would match: {% formrow form.birthday %}
But not: {% formrow form.birthday form.day_of_marriage %} (So it would only match a row with one DateInput, but not a row with two DateInputs.)

What do you think? Does this make sense in your eyes?

from django-floppyforms.

poswald avatar poswald commented on June 6, 2024

That may work but I think the problem is that the field that you are given in the formrow doesn't seem to have a type if you try to implement your own switching in the loop like:

{% load floppyforms %}{% block row %}{% for field in fields %}
{% if field.type == 'checkbox' %}
...
{% else %}
...
{% endif %}
{% endfor %}{% endblock %}

Having multiple fields passed in isn't an issue if you can test them inside the loop. I don't see how to get the type associated with that field though because it seems to be a django field at that point.

To do Bootstrap properly you (unfortunately) have to specify different html and need to know the underlying type at the row level. Having to specify using "custom_row.html" each time is a bit annoying as it's not really 'custom'. Every bootstrap checkbox should be rendered with that html... it's not really something you should have to remember to specify. The row template (or tag) should take care of it.

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.