Browse Source

fix: 🚸 Move user menu back to the right side of the screen (Fix #306)

release-2.9
Yoann Piétri 5 years ago
committed by Gabriel Detraz
parent
commit
750bb7dd1b
  1. 15
      templates/base.html

15
templates/base.html

@ -82,18 +82,19 @@ with this program; if not, write to the Free Software Foundation, Inc.,
<div class="container-fluid text-center content">
<div class="row content">
<div class="col-sm-2 sidenav-left pt4">
{% include 'sidebar.html' %}
{% block sidebar %}
{% endblock %}
<div class="col-lg-2 pt4">
</div>
<div class="col-sm-offset-2 col-sm-10 col-lg-8 text-left pt4">
<div class="col-sm-10 col-lg-8 text-left pt4">
{# Display django.contrib.messages as Bootstrap alerts #}
{% bootstrap_messages %}
{% block content %}{% endblock %}
</div>
<div class="col-lg-2 pt4">
<div class="col-sm-2 sidenav-right pt4">
{% include 'sidebar.html' %}
{% block sidebar %}
{% endblock %}
</div>
</div>
</div>

Loading…
Cancel
Save