Forked from an inaccessible project.
-
Isaac Evavold authored
Co-authored-by:
Scott Berg <saberg3@wisc.edu>
Isaac Evavold authoredCo-authored-by:
Scott Berg <saberg3@wisc.edu>
Code owners
Assign users and groups as approvers for specific file changes. Learn more.
dars-view.component.ts 1.07 KiB
import { Component, ViewChild, ElementRef } from '@angular/core';
import { MatSidenav } from '@angular/material';
import { DarsApiService } from '../services/api.service';
@Component({
selector: 'cse-dars-view',
templateUrl: './dars-view.component.html',
styleUrls: ['./dars-view.component.scss'],
})
export class DARSViewComponent {
displayedColumns = [
'view',
'school',
'program',
'honors',
'plan',
'status',
'download',
];
dataSource = [
{
pending: true,
school: 'Letters & Science',
program: 'Psychology',
honors: 'keep',
plan: 12345,
},
{
pending: false,
school: 'Letters & Science',
program: 'Psychology',
honors: 'keep',
plan: 12345,
},
{
pending: false,
school: 'Letters & Science',
program: 'Psychology',
honors: 'keep',
plan: 12345,
},
{
pending: false,
school: 'Letters & Science',
program: 'Psychology',
honors: 'keep',
plan: 12345,
},
];
constructor(private api: DarsApiService) {}
}