Actions are used to provide an easy and flexible way to add links to the shop.
Actions are grouped by action groups. By default there is only one group, which constitutes the tabs (the horizontal menu).
In this how-to you will learn how to add new actions groups and use them within your templates.
Login as admin
Go to Django’s admin interface:
http://localhost:8000/admin/
Go to Core / Action groups
Click on “Add action group” button
Enter the name of the group, e.g. “Footer”
Insert the “actions” tag to your template as following:
{% actions <group-id> %}
{% for action in actions %}
<div>
<a href="{{ action.link }}">
{{ action.title }}
</a>
</div>
{% endfor %}
Whereas the group-id is the id of the newly create group above.