Giter Site home page Giter Site logo

Comments (4)

bblanchon avatar bblanchon commented on September 13, 2024

It seems the only option is to use render_field, see #68.

from django-widget-tweaks.

danielniccoli avatar danielniccoli commented on September 13, 2024

@bblanchon I have the same need. I am not sure if I understand your reply, because OP is already using {% render_field ... %}.

I would need a way to add a string that contains a string and the value from a variable, much like OP. Specifically, to render the aria-labelledby attribute

Both these solutions don't work:

{{ field|attr:"aria-labelledby:{{ field.label}}Help" }}
{% render_field field|aria-labelledby:"{{ field.label}}Help" %}

# Needed to link the label to the help text
{% if field.help_text %}
    <div id="{{ field.label }}Help" class="form-text">
        {{ field.help_text | safe }}
    </div>
{% endif %}

from django-widget-tweaks.

bblanchon avatar bblanchon commented on September 13, 2024

I think what I meant to say is that @andreccorrea's only option was to do this:

{% render_field field my-data=template_variable %}

However, in your case @danielniccoli, you must append "help" to the string before passing it to {% render_field %}.
As far as I know, you cannot do this in one shot, so you need to create an additional context variable using {% with %}, like so:

{% with help_id=form.name.id_for_label|add:'_help' %}
{% render_field field aria-labelledby=help_id %}
<div id="{{ help_id }}" class="form-text">{{ field.help_text }}</div>
{% endwith %}

from django-widget-tweaks.

danielniccoli avatar danielniccoli commented on September 13, 2024
{% with help_id=form.name.id_for_label|add:'_help' %}
                                       ^^^                                              

That solved my problem! I wasn't aware I could use |add that way. Thank you!

from django-widget-tweaks.

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.