Commit d6d92acddecf36539cac0704eda021ce774ea24d
1 parent
98650ba7
Exists in
master
and in
2 other branches
Removing analytics button action
Showing
2 changed files
with
3 additions
and
36 deletions
Show diff stats
amadeus/templates/base.html
| ... | ... | @@ -363,7 +363,7 @@ |
| 363 | 363 | </a> |
| 364 | 364 | </li> |
| 365 | 365 | <li class="item" data-toggle="tooltip" data-placement="right" title="{% trans "Analytics" %}"> |
| 366 | - <a href="{% url 'dashboards:view_general' %}"><i class="fa fa-bar-chart" aria-hid{% get_current_language as LANGUAGE_CODE %}den="true"></i></a> | |
| 366 | + <a href=""><i class="fa fa-bar-chart" aria-hid{% get_current_language as LANGUAGE_CODE %}den="true"></i></a> | |
| 367 | 367 | </li> |
| 368 | 368 | </ul> |
| 369 | 369 | {% endblock %} |
| ... | ... | @@ -424,42 +424,9 @@ |
| 424 | 424 | </li> |
| 425 | 425 | |
| 426 | 426 | <li class="item" data-toggle="tooltip" data-placement="top" title="{% trans "Analytics" %}"> |
| 427 | - <a href="{% url 'dashboards:view_general' %}"><i class="fa fa-bar-chart" aria-hid{% get_current_language as LANGUAGE_CODE %}den="true"></i></a> | |
| 427 | + <a href=""><i class="fa fa-bar-chart" aria-hid{% get_current_language as LANGUAGE_CODE %}den="true"></i></a> | |
| 428 | 428 | </li> |
| 429 | 429 | </ul> |
| 430 | - <!-- | |
| 431 | - | |
| 432 | - <ul class="mobile-menu"> | |
| 433 | - <li class="item {{ subjects_menu_active }}" data-toggle="tooltip" data-placement="top" title="{% trans "Subjects" %}"> | |
| 434 | - <a href="{% url 'subjects:index' %}"> | |
| 435 | - <i class="fa fa-graduation-cap" aria-hidden="true"></i> | |
| 436 | - </a> | |
| 437 | - </li> | |
| 438 | - <li class="item {{ mural_menu_active }} action_icon" data-toggle="tooltip" data-placement="top" title="{% trans "Mural" %}"> | |
| 439 | - <a href="{% url 'mural:manage_general' %}"> | |
| 440 | - <i class="fa fa-list" aria-hidden="true" ></i> | |
| 441 | - <span class="badge notify_badge mural_badge" {% if mural_notifications_count == 0 %} style="display:none" {% endif %}>{% if mural_notifications_count > 99 %} +99 {% else %} {{ mural_notifications_count }} {% endif %}</span> | |
| 442 | - </a> | |
| 443 | - </li> | |
| 444 | - <li class="item {{ chat_menu_active }} action_icon" data-toggle="tooltip" data-placement="top" title="{% trans "Messages" %}"> | |
| 445 | - <a href="{% url 'chat:manage_general' %}"> | |
| 446 | - <i class="fa fa-envelope-o" aria-hidden="true"></i> | |
| 447 | - <span class="badge notify_badge chat_badge" {% if chat_notifications_count == 0 %} style="display:none" {% endif %}>{% if chat_notifications_count > 99 %} +99 {% else %} {{ chat_notifications_count }} {% endif %}</span> | |
| 448 | - </a> | |
| 449 | - </li> | |
| 450 | - <li class="item {{ pendencies_menu_active }} action_icon" data-toggle="tooltip" data-placement="top" title="{% trans "Pendencies" %}"> | |
| 451 | - <a href="{% url 'notifications:manage' %}"> | |
| 452 | - <i class="fa fa-exclamation-triangle" aria-hidden="true"></i> | |
| 453 | - {% if notifications_count > 0 %} | |
| 454 | - <span class="badge notify_badge">{% if notifications_count > 99 %} +99 {% else %} {{ notifications_count }} {% endif %}</span> | |
| 455 | - {% endif %} | |
| 456 | - </a> | |
| 457 | - </li> | |
| 458 | - <li class="item" data-toggle="tooltip" data-placement="top" title="{% trans "Analytics" %}"> | |
| 459 | - <a href="{% url 'dashboards:view_general' %}"><i class="fa fa-bar-chart" aria-hid{% get_current_language as LANGUAGE_CODE %}den="true"></i></a> | |
| 460 | - </li> | |
| 461 | - </ul> | |
| 462 | - --> | |
| 463 | 430 | </div> |
| 464 | 431 | </div> |
| 465 | 432 | </div> | ... | ... |
subjects/templates/subjects/subject_card.html
| ... | ... | @@ -36,7 +36,7 @@ |
| 36 | 36 | </ul> |
| 37 | 37 | {% endif %} |
| 38 | 38 | |
| 39 | - <a href="{% url 'subjects:reports:create_interaction' %}?subject_id={{subject.id}}" class="pull-right action_icon" data-toggle="tooltip" data-placement="bottom" title="{% trans 'Analytics' %}"><i class="fa fa-bar-chart" aria-hidden="true"></i></a> | |
| 39 | + <a href="" class="pull-right action_icon" data-toggle="tooltip" data-placement="bottom" title="{% trans 'Analytics' %}"><i class="fa fa-bar-chart" aria-hidden="true"></i></a> | |
| 40 | 40 | <a href="{% url 'notifications:view' subject.slug %}" class="pull-right action_icon" data-toggle="tooltip" data-placement="bottom" title="{% trans 'Pendencies' %}"> |
| 41 | 41 | <i class="fa fa-exclamation-triangle" aria-hidden="true"></i> |
| 42 | 42 | {% notifies_number subject request.user %} | ... | ... |