Commit 6ebc318511b3ce11d512288b847e355ca71f4c53

Authored by Gustavo
1 parent 00aa6385

including div to solve responsive breadcrumb bug

Showing 1 changed file with 7 additions and 5 deletions   Show diff stats
amadeus/templates/base.html
... ... @@ -87,7 +87,7 @@
87 87  
88 88 if (array.length > 1) {
89 89 new_lang += '-';
90   - new_lang += array[1].toUpperCase();
  90 + new_lang += array[1].toUpperCase();
91 91 }
92 92  
93 93 </script>
... ... @@ -205,7 +205,7 @@
205 205 </ul>
206 206 </div>
207 207 </div>
208   -
  208 +
209 209 <!-- Mobile Menu -->
210 210 <div class="navbar navbar-default hidden-lg hidden-md">
211 211 <div class="navbar-header">
... ... @@ -366,23 +366,25 @@
366 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>
367 367 </li>
368 368 </ul>
369   - {% endblock %}
  369 + {% endblock %}
370 370 </div>
371 371  
372 372 <div id="page_content" class="col-xs-12 col-sm-12 col-md-11 col-lg-11">
  373 + <div class="dropdown dropdown_crumb">
373 374 {% block breadcrumbs %}
374 375 {% breadcrumb 'Home' 'home' %}
375 376 {% endblock %}
  377 + <div class="drop_change" style="width:100%">
376 378 {% block render_breadcrumbs %}
377 379 {% render_breadcrumbs %}
378 380 {% endblock %}
379   -
  381 + </div>
  382 + </div>
380 383 {% block content %}
381 384 {% endblock %}
382 385 </div>
383 386 </div>
384 387 </div>
385   -
386 388 {% block footer %}
387 389 {% endblock %}
388 390  
... ...