In a Django template, is there a way to get a value from a key that has a space in it? Eg, if I have a dict like:
{"Restaurant Name": Foo}
How can reference that value in my template. Pseudo-syntax might be:
{{ entry['Restaurant Name'] }}
|
In a Django template, is there a way to get a value from a key that has a space in it? Eg, if I have a dict like:
How can reference that value in my template. Pseudo-syntax might be:
|
|||||
|
|
There is no clean way to do this with the built-in tags. Trying to do something like:
will throw a parse error. You could do a for loop through the dictionary (but it's ugly/inefficient):
A custom tag would probably be cleaner:
and use it in the template like so:
Or maybe try to restructure your dict to have "easier to work with" keys. |
|||||||||
|