Newer
Older
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<mat-card id="audit" *ngIf="auditId">
<header class="no-horizontal-padding">
<div class="audit-metadata">
<div>
<p>{{audit.header.preparedDate}}</p>
<p>{{audit.header.name}}</p>
<p>Program Code: {{audit.header.degreeProgram}}</p>
</div>
<div class="text-align-right">
<p>{{auditId}}</p>
<p>{{audit.header.graduationDate}}</p>
<p>{{audit.header.graduationDateLabel}}</p>
</div>
</div>
<h3 class="text-align-center">
{{audit.header.clientDefinedMessage}}
<br />
{{audit.header.title1}}
<br />
{{audit.header.title2}}
</h3>
<div class="audit-section-controles">
<button mat-stroked-button color="primary">Open All Sections</button>
<button mat-stroked-button color="primary">Close All Sections</button>
</div>
</header>
<section>
<p class="tight faded">This audit was run using values not reflected in your current status. Parameters used when submitting this audit request:</p>
<br/>
<p class="tight faded">Honors Processing: Keep current status.</p>
<p class="tight faded">Courses Used: Using courses from Curse Guide Plan: (Plan name field blank in cobol program "stuinst.)</p>
</section>
<section *ngIf="audit.topText.length > 0">
<p *ngFor="let text of audit.topText" class="text-align-center pre-wrap">{{text}}</p>
</section>
<section>
<p class="text-align-center">{{audit.completeText}}</p>
</section>
<section *ngFor="let requirement of audit.requirements">
<h4>{{requirement.requirementName}}</h4>
<p>{{requirement.status.status}} - {{requirement.status.status}}</p>
<div *ngFor="let contentType of requirement.requirementLinesGroupedByContentType">
<h5>{{contentType.contentType}}</h5>
<p *ngFor="let line of contentType.lines">{{line}}</p>
</div>
</section>
<section *ngIf="audit.bottomText.length > 0">
<p *ngFor="let text of audit.bottomText" class="text-align-center pre-wrap">{{text}}</p>
</section>
<!-- Not sure where this info comes from? -->
<!-- <section class="text-align-center">
<h4 class="mat-h2 uppercase faded">At least one requirment has not been satisfied</h4>
<p class="mat-h2 faded">For more information about undergraduate L&S program see:</p>
<a href="#" mat-button color="primary">L&S Guide</a>
</section> -->
</mat-card>