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 | 48 | {% browserid_info %} |
| 49 | 49 | <div class="row"> |
| 50 | 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 | 52 | <a href="{% url 'signup' %}">{% trans "Register" %}</a> |
| 53 | 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 | 57 | {% else %} |
| 56 | - <div class="col-lg-10 text-right"> | |
| 58 | + <div class="col-sm-1 text-right"> | |
| 57 | 59 | {% trans "authenticated as" %} <b>{{ user.email }}</b> |
| 58 | 60 | </div> |
| 59 | - <div class="col-lg-1 text-center"> | |
| 61 | + <div class="col-sm-1 text-center"> | |
| 60 | 62 | <a href="{% url 'user_profile' user.username %}"> |
| 61 | 63 | {% trans "My Profile" %} |
| 62 | 64 | </a> |
| 63 | 65 | </div> |
| 64 | - <div class="col-lg-1 text-center"> | |
| 66 | + <div class="col-sm-1 text-center"> | |
| 65 | 67 | {% browserid_logout text='Logout '%} |
| 66 | 68 | </div> |
| 67 | 69 | {% endif %} | ... | ... |