Commit 1b3a026568c45270572bf1f225fe0b977bdf3a0a
1 parent
dfde9672
Exists in
master
and in
5 other branches
added trans templatetags
Showing
1 changed file
with
4 additions
and
4 deletions
Show diff stats
courses/templates/subject/index.html
... | ... | @@ -57,17 +57,17 @@ |
57 | 57 | </div> |
58 | 58 | </div> |
59 | 59 | <div class="panel-body"> |
60 | - <p><b>Professor:</b> {{subject.professors}}</p> | |
60 | + <p><b>{% trans "Professor" %}:</b> {{subject.professors}}</p> | |
61 | 61 | <p> |
62 | - <b>Description:</b> | |
62 | + <b>{% trans "Description" %}:</b> | |
63 | 63 | {{subject.description|linebreaks}} |
64 | 64 | </p> |
65 | 65 | <div class="row"> |
66 | 66 | <div class="col-xs-6 col-md-6"> |
67 | - <p><b>Begining:</b> {{subject.init_date}}</p> | |
67 | + <p><b>{% trans "Beginning" %}:</b> {{subject.init_date}}</p> | |
68 | 68 | </div> |
69 | 69 | <div class="col-xs-6 col-md-6"> |
70 | - <p><b>End:</b> {{subject.end_date}}</p> | |
70 | + <p><b>{% trans "End" %}:</b> {{subject.end_date}}</p> | |
71 | 71 | </div> |
72 | 72 | </div> |
73 | 73 | </div> | ... | ... |