{% load toolbar_tags %}
    {% for group in groups %}
  1. {{ group.name }}
  2. {% endfor %}
 
{% for group in groups %}
    {% for button in group.button_set.all %}
  1. {{ button.label }}
  2. {% endfor %}
{% endfor %}