diff --git a/django/website/tabbed_page/templates/tabbed_page/tabbed_page.html b/django/website/tabbed_page/templates/tabbed_page/tabbed_page.html index a7c0781ed007a6917229ca2d691946baddbb716a..b8f0f0e2ebcf401452236f05e7f2125d18283010 100644 --- a/django/website/tabbed_page/templates/tabbed_page/tabbed_page.html +++ b/django/website/tabbed_page/templates/tabbed_page/tabbed_page.html @@ -10,7 +10,7 @@ {% for tab in view.tabs %} <li role="presentation" {% if tab == view.active_tab %}class="active"{% endif %}> - <a href="#" aria-controls="..." role="tab" data-toggle="tab"> + <a href="{% url 'tabbed-page' name=view.page.name tab_name=tab.name %}"> {% trans tab.label %} </a> </li>