Commit 2102fa3dd90b375f503481049b01112eccf373eb
1 parent
46b661aa
Exists in
master
and in
2 other branches
fixed missing part on base.html template
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
amadeus/templates/base.html
... | ... | @@ -235,7 +235,7 @@ |
235 | 235 | </a> |
236 | 236 | </li> |
237 | 237 | <li class="item" data-toggle="tooltip" data-placement="right" title="{% trans "Analytics" %}"> |
238 | - <i class="fa fa-bar-chart" aria-hidden="true"></i> | |
238 | + <a href="{% url 'analytics:view_general' %}"><i class="fa fa-bar-chart" aria-hid{% get_current_language as LANGUAGE_CODE %}den="true"></i></a> | |
239 | 239 | </li> |
240 | 240 | </ul> |
241 | 241 | {% endblock %} |
... | ... | @@ -290,7 +290,7 @@ |
290 | 290 | </a> |
291 | 291 | </li> |
292 | 292 | <li class="item" data-toggle="tooltip" data-placement="top" title="{% trans "Analytics" %}"> |
293 | - <i class="fa fa-bar-chart" aria-hid{% get_current_language as LANGUAGE_CODE %}den="true"></i> | |
293 | + <a href="{% url 'analytics:view_general' %}"><i class="fa fa-bar-chart" aria-hid{% get_current_language as LANGUAGE_CODE %}den="true"></i></a> | |
294 | 294 | </li> |
295 | 295 | </ul> |
296 | 296 | </div> | ... | ... |