Giter VIP home page Giter VIP logo

Comments (5)

c0d3z3r0 avatar c0d3z3r0 commented on June 20, 2024

I modified __getitem__ in the MultiForm class but that only works for two forms with unique field names.

def __getitem__(self, key):
        try:
            return self.forms[key]
        except KeyError:
            return {x.name: x for x in 
                    chain.from_iterable(self.forms.values())}[key]

from django-betterforms.

c0d3z3r0 avatar c0d3z3r0 commented on June 20, 2024

My solution raises more problems than it solves... maybe that was a bad idea ;)

from django-betterforms.

julianandrews avatar julianandrews commented on June 20, 2024

{{ form.user.username }} works. Is this intended?

Yup, it sounds as if you're worked this all out. For fine grained access to fields the {{ form.user.username }} approach is the the intended approach. Direct access to fields causes problems if forms share field names.

I'm going to go ahead and close the bug!

from django-betterforms.

rockymeza avatar rockymeza commented on June 20, 2024

Perhaps some documentation might help here?

-rocky
2015年10月12日 上午3:39,"Julian Andrews" [email protected]写道:

{{ form.user.username }} works. Is this intended?

Yup, it sounds as if you're worked this all out. For fine grained access
to fields the {{ form.user.username }} approach is the the intended
approach. Direct access to fields causes problems if forms share field
names.

I'm going to go ahead and close the bug!


Reply to this email directly or view it on GitHub
#36 (comment)
.

from django-betterforms.

julianandrews avatar julianandrews commented on June 20, 2024

I was thinking about that. The docs do have a snippet that describes this in a view context, which sort of implies the use in templates"

form = UserProfileMultiForm()
# get the Field object
form['user'].fields['name']
# get the BoundField object
form['user']['name']

But possibly that section could be fleshed out to include a short template example to make it really explicit.

from django-betterforms.

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.