Commit 74533838c4b63244b99e3737f005fe64c229294b
1 parent
b1fb9cd9
Exists in
thread_page
Expanded column width for email subscriptions
This change has been made in colab, but we need to replicate it here Signed-off-by: Carlos Coêlho <carlosoliveira@duzeru.org>
Showing
1 changed file
with
3 additions
and
3 deletions
Show diff stats
src/colab-spb-theme-plugin/colab_spb_theme/templates/accounts/manage_subscriptions.html
... | ... | @@ -3,7 +3,7 @@ |
3 | 3 | |
4 | 4 | {% block main-content %} |
5 | 5 | <div class="colab-content container"> |
6 | - <h2>{% blocktrans %}Group Subscriptions{% endblocktrans %}</h2> | |
6 | + <h2>Inscreva-se nas listas de discussão</h2> | |
7 | 7 | <h3>{% gravatar user_.email 50 %} {{ user_.get_full_name }} ({{ user_.username }})</h3> |
8 | 8 | <br> |
9 | 9 | |
... | ... | @@ -12,7 +12,7 @@ |
12 | 12 | |
13 | 13 | <div class="row"> |
14 | 14 | {% for email, lists in membership.items %} |
15 | - <div class="col-lg-3 col-md-4 col-sm-6 col-xs-12"> | |
15 | + <div class="col-lg-6 col-md-6 col-sm-6 col-xs-12"> | |
16 | 16 | <div class="panel panel-default"> |
17 | 17 | <div class="panel-heading"> |
18 | 18 | <h3 class="panel-title">{{ email }}</h3> |
... | ... | @@ -32,7 +32,7 @@ |
32 | 32 | </div> |
33 | 33 | |
34 | 34 | <div class="row"> |
35 | - <div class="text-center"> | |
35 | + <div class="col-md-12"> | |
36 | 36 | <button class="btn btn-lg btn-primary" type="submit">{% trans 'Update subscriptions' %}</button> |
37 | 37 | </div> |
38 | 38 | </div> | ... | ... |