Commit 707275e55391b6c4fdf1d3346b06821ac2eb800b
1 parent
ec2e59b7
Exists in
master
and in
39 other branches
Fixing some base.html columns
Showing
1 changed file
with
7 additions
and
5 deletions
Show diff stats
src/colab/deprecated/templates/base.html
| @@ -48,20 +48,22 @@ | @@ -48,20 +48,22 @@ | ||
| 48 | {% browserid_info %} | 48 | {% browserid_info %} |
| 49 | <div class="row"> | 49 | <div class="row"> |
| 50 | {% if not user.is_authenticated %} | 50 | {% if not user.is_authenticated %} |
| 51 | - <div class="col-lg-2 col-lg-offset-9 text-right"> | 51 | + <div class="col-sm-2 col-sm-offset-9 text-right"> |
| 52 | <a href="{% url 'signup' %}">{% trans "Register" %}</a> | 52 | <a href="{% url 'signup' %}">{% trans "Register" %}</a> |
| 53 | </div> | 53 | </div> |
| 54 | - {% browserid_login text='Login' next=request.path %} | 54 | + <div class="col-sm-1"> |
| 55 | + {% browserid_login text='Login' next=request.path %} | ||
| 56 | + </div> | ||
| 55 | {% else %} | 57 | {% else %} |
| 56 | - <div class="col-lg-10 text-right"> | 58 | + <div class="col-sm-1 text-right"> |
| 57 | {% trans "authenticated as" %} <b>{{ user.email }}</b> | 59 | {% trans "authenticated as" %} <b>{{ user.email }}</b> |
| 58 | </div> | 60 | </div> |
| 59 | - <div class="col-lg-1 text-center"> | 61 | + <div class="col-sm-1 text-center"> |
| 60 | <a href="{% url 'user_profile' user.username %}"> | 62 | <a href="{% url 'user_profile' user.username %}"> |
| 61 | {% trans "My Profile" %} | 63 | {% trans "My Profile" %} |
| 62 | </a> | 64 | </a> |
| 63 | </div> | 65 | </div> |
| 64 | - <div class="col-lg-1 text-center"> | 66 | + <div class="col-sm-1 text-center"> |
| 65 | {% browserid_logout text='Logout '%} | 67 | {% browserid_logout text='Logout '%} |
| 66 | </div> | 68 | </div> |
| 67 | {% endif %} | 69 | {% endif %} |