Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

Python

Malcolm Jury
Malcolm Jury
11,194 Points

Unable to select options for the bear in builder

I have followed all of the steps based upon the items video to get all of the items to display.

Unfortunately, on my mac I am unable to have any of the items selected when I click on them. it works for the background colors but not for any of the bear items.

Also, the final version from the project files also doesn't work on my Mac in Safari and Chrome,

I am also running this tutorial locally on my machine

Any thoughts?

4 Answers

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher
{% for choice in choices %}
                    <input type="radio" id"{{ category }}-{{ choice }}_icon" name="{{ category }}"
                    value="{{ choice }}" {% if saves.get(category) == choice %}checked{% endif %}>
                    <label for="{{ category }}-{{ choice }}_icon"><img src="/static/img/{{ category }}-{{ choice }}.svg"></label>
                {% endfor %}

You forgot the = after id.

Kenneth Love
STAFF
Kenneth Love
Treehouse Guest Teacher

My guess is that it's an HTML problem. Can you post your builder.html?

Malcolm Jury
Malcolm Jury
11,194 Points

'''html

{% extends "layout.html" %}

{% block content %} <!--Build Area --> <form action="{{ url_for('save') }}" method="POST" class="wrap no-top"> <div class="grid-100 row"> <div class="grid-30"> <div class="title"> <input type="text" name="name" value="{{ saves.get('name', '') }}"> </div> </div> <div class="grid-70"> <div class="colors"> {% for color in options['colors'] %} <input type="radio" id="{{ color }}" name="colors" value="{{ color }}" {% if saves.get('colors') == color %}checked{% endif %}> <label for="{{ color }}"></label> {% endfor %} <button class="btn">Update</button> </div> </div> <div id="bear" class="grid-100 bg-{{ saves.get('colors') }}"> <div class="bear-body"><img src="/static/img/bear_body.svg" /></div> {% if saves.get('footwear') %} <div class="footwear"><img src="/static/img/bear_items_footwear-{{ saves['footwear'] }}.svg"></div> {% endif %} <div class="head"><img src="/static/img/bear_face.svg" /></div> <div class="nose"><img src="/static/img/bear_nose.svg" /></div> </div> <div class="items"> {% for category, choices in options.items() %} {% if category != 'colors' %} <div class="grid-100 row"> <div class="grid-20"> <p class="category-title">{{ category.title() }}</p> </div> <div class="grid-80"> <input type="radio" id="no_{{ category }}_icon" name="{{ category }}" value='' {% if not saves.get(category) %}checked{% endif %}> <label for="no_{{ category }}_icon"><img src="/static/img/no-selection.svg"></label> {% for choice in choices %} <input type="radio" id"{{ category }}-{{ choice }}_icon" name="{{ category }}" value="{{ choice }}" {% if saves.get(category) == choice %}checked{% endif %}> <label for="{{ category }}-{{ choice }}_icon"><img src="/static/img/{{ category }}-{{ choice }}.svg"></label> {% endfor %} </div> {% endif %} {% endfor %} </div> </div> </form>

{% endblock %}

'''