-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcsa_qna.html
29 lines (28 loc) · 1.41 KB
/
csa_qna.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<main class="px-3">
<div style="text-align: center;">
<h1>Servicenow: Certified System Administrator</h1>
<h3>( Practice Set )</h3>
<h6>This practice set is based on the <a href="https://community.servicenow.com/community?id=community_Article&sys_id=a0e7f10bdb01dd50f77799ead3961917">community post</a> created by <i>Lon Landry</i>. Created for better readability, Happy Learning.</h6>
</div>
<div>
<br />
<span>Filter out by Categories: </span>
<select name="queCategories" ng-model="userSelectedCategory" ng-options="uniqueCategory as uniqueCategory for uniqueCategory in uniqueCategoryList">
<option value="">--Select--</option>
</select>
</div>
<div class="container py-5 h-100" ng-repeat="recinfo in recommendations | filter:{Category:userSelectedCategory}">
<div class="card">
<div class="card-body">
<div class="shadow-1-strong" style="color: rgb(255, 0, 132)">
<strong>{{recinfo["Number"]}}</strong> <span style="color: grey;">( Category: {{recinfo["Category"]}} )</span>
</div>
<p class="mb-0 mt-2 font-italic text-dark" ng-bind-html="recinfo['Front (html)']"></p>
<footer class="pt-4 mt-4 border-top">
<b style="color: green;"> ✓Answer:</b>
<span ng-bind-html="recinfo['Back (HTML)']"></span>
</footer>
</div>
</div>
</div>
</main>