| 
														
															@@ -51,18 +51,19 @@ 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                             {{ if .takenCourses }} 
														 | 
														
														 | 
														
															                             {{ if .takenCourses }} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                             <div class="taken-courses"> 
														 | 
														
														 | 
														
															                             <div class="taken-courses"> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                 <h6 class="text-muted">{{ i18n "taken_courses" }}</h6> 
														 | 
														
														 | 
														
															                                 <h6 class="text-muted">{{ i18n "taken_courses" }}</h6> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-                                {{ if .takenCourses.showGrades }}     
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                                {{ if .takenCourses.showGrades }} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                                {{ $hideScale  := .takenCourses.hideScale }} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                 <table> 
														 | 
														
														 | 
														
															                                 <table> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                     <thead> 
														 | 
														
														 | 
														
															                                     <thead> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                         <th>{{ i18n "course_name" }}</th> 
														 | 
														
														 | 
														
															                                         <th>{{ i18n "course_name" }}</th> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-                                        <th>{{ i18n "total_credit" }}</th> 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                                        {{ if not $hideScale  }}<th>{{ i18n "total_credit" }}</th>{{ end }} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                         <th>{{ i18n "obtained_credit" }}</th> 
														 | 
														
														 | 
														
															                                         <th>{{ i18n "obtained_credit" }}</th> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                     </thead> 
														 | 
														
														 | 
														
															                                     </thead> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                     <tbody> 
														 | 
														
														 | 
														
															                                     <tbody> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                         {{ range $index,$course := .takenCourses.courses }} 
														 | 
														
														 | 
														
															                                         {{ range $index,$course := .takenCourses.courses }} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                         <tr class="course {{ if gt $index 1 }}hidden-course{{ end}}"> 
														 | 
														
														 | 
														
															                                         <tr class="course {{ if gt $index 1 }}hidden-course{{ end}}"> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                             <td>{{ $course.name }}</td> 
														 | 
														
														 | 
														
															                                             <td>{{ $course.name }}</td> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															-                                            <td>{{ $course.outOf }}</td> 
														 | 
														
														 | 
														
															 
														 | 
													
												
											
												
													
														| 
														 | 
														
															 
														 | 
														
														 | 
														
															+                                            {{ if not $hideScale  }}<td>{{ $course.outOf }}</td>{{ end }} 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                             <td>{{ $course.achieved }}</td> 
														 | 
														
														 | 
														
															                                             <td>{{ $course.achieved }}</td> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                         </tr> 
														 | 
														
														 | 
														
															                                         </tr> 
														 | 
													
												
											
												
													
														| 
														 | 
														
															                                         {{ end }} 
														 | 
														
														 | 
														
															                                         {{ end }} 
														 |