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,17 +57,17 @@ | ||
57 | </div> | 57 | </div> |
58 | </div> | 58 | </div> |
59 | <div class="panel-body"> | 59 | <div class="panel-body"> |
60 | - <p><b>Professor:</b> {{subject.professors}}</p> | 60 | + <p><b>{% trans "Professor" %}:</b> {{subject.professors}}</p> |
61 | <p> | 61 | <p> |
62 | - <b>Description:</b> | 62 | + <b>{% trans "Description" %}:</b> |
63 | {{subject.description|linebreaks}} | 63 | {{subject.description|linebreaks}} |
64 | </p> | 64 | </p> |
65 | <div class="row"> | 65 | <div class="row"> |
66 | <div class="col-xs-6 col-md-6"> | 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 | </div> | 68 | </div> |
69 | <div class="col-xs-6 col-md-6"> | 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 | </div> | 71 | </div> |
72 | </div> | 72 | </div> |
73 | </div> | 73 | </div> |