I suspect this isn't possible, but with #django template partials is it possible to have a dynamic name when rendering a partial?
so something like this:
```
icon_name = 'star`
{% partial icon_name %}
```
I have hacked around it using the include tag so far, but wondered if this should be possible?