Commit fb10d2a3d38d28c44db5f3cca13db2711281c92a
1 parent
2c97eaee
Exists in
master
and in
5 other branches
modifying home student #205
Showing
1 changed file
with
24 additions
and
24 deletions
Show diff stats
app/templates/home_student.html
... | ... | @@ -16,23 +16,23 @@ |
16 | 16 | |
17 | 17 | |
18 | 18 | {% block sidebar %} |
19 | - <div class="panel panel-primary navigation"> | |
19 | + <div class="panel panel-primary"> | |
20 | 20 | <div class="panel-heading"> |
21 | 21 | <h4>{% trans 'Menu' %}</h4> |
22 | 22 | </div> |
23 | 23 | <div class="panel-body"> |
24 | - <ul class="nav nav-pills nav-stacked"> | |
25 | - <li><a href="{% url 'users:profile' %}">{% trans 'Profile' %}</a></li> | |
26 | - <li><a href="{% url 'course:manage' %}">{% trans 'My Courses' %}</a></li> | |
24 | + <ul class="nav nav-pills nav-stacked"> | |
25 | + <li><a href="{% url 'users:profile' %}">{% trans 'Profile' %}</a></li> | |
26 | + <li><a href="{% url 'course:manage' %}">{% trans 'My Courses' %}</a></li> | |
27 | 27 | <li><a href="{% url 'core:guest' %}">{% trans 'All Courses' %}</a></li> |
28 | - <li><a href="javascript:void(0)">{% trans 'Google accounts' %}</a></li> | |
28 | + <li><a href="javascript:void(0)">{% trans 'Google accounts' %}</a></li> | |
29 | 29 | </ul> |
30 | 30 | </div> |
31 | 31 | </div> |
32 | 32 | {% endblock %} |
33 | 33 | |
34 | 34 | {% block content %} |
35 | - <h3>{% trans 'Notifications' %}</h3> | |
35 | + <h3>{% trans 'Notifications' %}</h3> | |
36 | 36 | {% if messages %} |
37 | 37 | {% for message in messages %} |
38 | 38 | <div class="alert alert-success alert-dismissible" role="alert"> |
... | ... | @@ -44,27 +44,27 @@ |
44 | 44 | {% endfor %} |
45 | 45 | {% endif %} |
46 | 46 | <div class="panel panel-default"> |
47 | - <div class="panel-body"> | |
48 | - {% trans 'His course has notified a new activity!' %} | |
49 | - </div> | |
50 | - <div class="panel-footer"> | |
51 | - Go | |
52 | - </div> | |
47 | + <div class="panel-body"> | |
48 | + His course has notified a new activity! | |
49 | + </div> | |
50 | + <div class="panel-footer"> | |
51 | + Go | |
52 | + </div> | |
53 | 53 | </div> |
54 | 54 | <div class="panel panel-default"> |
55 | - <div class="panel-body"> | |
56 | - {% trans 'His teacher has notified a new material!' %} | |
57 | - </div> | |
58 | - <div class="panel-footer"> | |
59 | - Go | |
60 | - </div> | |
55 | + <div class="panel-body"> | |
56 | + His teacher has notified a new material! | |
57 | + </div> | |
58 | + <div class="panel-footer"> | |
59 | + Go | |
60 | + </div> | |
61 | 61 | </div> |
62 | 62 | <div class="panel panel-default"> |
63 | - <div class="panel-body"> | |
64 | - {% trans 'You have a new guardian!' %} | |
65 | - </div> | |
66 | - <div class="panel-footer"> | |
67 | - {% trans 'Go' %} | |
68 | - </div> | |
63 | + <div class="panel-body"> | |
64 | + You have a new guardian! | |
65 | + </div> | |
66 | + <div class="panel-footer"> | |
67 | + Go | |
68 | + </div> | |
69 | 69 | </div> |
70 | 70 | {% endblock %} | ... | ... |