aboutsummaryrefslogtreecommitdiff
path: root/views/exams.hbs
diff options
context:
space:
mode:
authornanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-25 06:59:56 +0000
committernanalelfe <nargiza.nosirova@mail.utoronto.ca>2016-07-25 06:59:56 +0000
commit1032205c1a94ae31d780d2c339abbe628eb27fae (patch)
tree7cc15d706f5fbd1c624341e781219710287088cf /views/exams.hbs
parent553e5d112f34c6be19b388fea110dcdceb7015bd (diff)
parent2b0ca1332175139e44235c3ac3390d5f26eae7e1 (diff)
Merge branch 'master' of https://github.com/HumairAK/solutions_repo
Diffstat (limited to 'views/exams.hbs')
-rw-r--r--views/exams.hbs29
1 files changed, 16 insertions, 13 deletions
diff --git a/views/exams.hbs b/views/exams.hbs
index b5e5092..8b179f3 100644
--- a/views/exams.hbs
+++ b/views/exams.hbs
@@ -1,18 +1,21 @@
<main id = 'solutions-main'>
<div class = 'search container' id = 'solutions-div'>
<h4 class='search-head'>Search results for "{{query}}"</h4>
- {{# each result}}
- <a href="/questions/{{this.id}}"> <!--- Attaches exam id to url --->
- <section class = 'solutions-card'>
- <h3 class = 'solutions-title'>{{this.title}}</h3>
- <p class = 'solutions-time' ><em>Term: </em>{{this.term}} {{this.year}}</p>
- <p class = 'exam-instr'><em>Instructors: </em>
- {{this.instructors}}
- </p>
- <p class = 'solutions-type'>{{result.type}}</p>
- </section>
- </a>
- {{/each}}
-
+ {{# if result }}
+ {{# each result}}
+ <a href="/questions/{{this.id}}"> <!--- Attaches exam id to url --->
+ <section class = 'solutions-card'>
+ <h3 class = 'solutions-title'>{{this.title}}</h3>
+ <p class = 'solutions-time' ><em>Term: </em>{{this.term}} {{this.year}}</p>
+ <p class = 'exam-instr'><em>Instructors: </em>
+ {{this.instructors}}
+ </p>
+ <p class = 'solutions-type'>{{result.type}}</p>
+ </section>
+ </a>
+ {{/each}}
+ {{ else }}
+ <h3 class="solutions-title"> No results found. Sorry!</h3>
+ {{/if}}
</div>
</main>