i thought something like
site.get_grouper_display or get_site.grouper_display
but that doesn't work
here is the template code
{% regroup object_list|dictsort:"group" by group as sites %}
<ul>
{% for site in sites %}
<li><h3>{{ site.grouper }}</h3></li>
<ul>
{% for buddy in site.list %}
<li><a href="/buddy/{{ buddy.name|lower}}/">{{ buddy.alias
}}</a></li>
{% endfor %}
</ul>
{% endfor %}
</ul>
is there a way to do it?
Thanks,
Sam