Im wondering how i could show the dictionary key itself in a django template
Example dictionary:
resources = {'coin': coin, 'grain': grain, 'iron': iron, 'stone': stone, 'wood': wood,}
Template
<b>Coin: </b>{{ upgrade.coin }}
Were i want to use the dictionary key (+some html) instead of the hard coded "Coin:"
Can anyone please help me out?