Commit 02cbb3a124d3cf95d48b3a5e4326aa1b230fc39a

Authored by Matheus Lins
2 parents f9a2a416 170950c6

fixing conflit

core/static/css/base/amadeus.css
... ... @@ -411,4 +411,9 @@ ul, li {
411 411 .cards-detail .panel .panel-heading{/*background-color:;*/}
412 412 .cards-detail .panel .panel-heading h4{color:black;}
413 413 .course, .subject, .topic{ padding-top: 0px; padding-bottom: 0px; }
414   -.course-detail{padding-top: 10px; padding-bottom: 10px;}
415 414 \ No newline at end of file
  415 +.course-detail{padding-top: 10px; padding-bottom: 10px;}
  416 +
  417 +/* Menu link remove radius */
  418 +.nav-pills > li > a {
  419 + border-radius: 0px;
  420 +}
416 421 \ No newline at end of file
... ...
courses/templates/course/view.html
... ... @@ -173,6 +173,9 @@
173 173 <p><b>{% trans "Professor" %}: </b>{% for professor in subject.professors.all %}{% if not forloop.first %},{% endif %}
174 174 {{professor}}{% if forloop.last %}.{% endif %}{% endfor %}</p>
175 175 <p>
  176 + <b>{% trans 'Category' %}: </b><i>{{ subject.category }}</i>
  177 + </p>
  178 + <p>
176 179 <b>{% trans "Description" %}: </b>
177 180 <i>
178 181 {{subject.description}}
... ...