mirror of
https://github.com/simon987/task_tracker.git
synced 2025-12-19 09:49:02 +00:00
Some work on project actions
This commit is contained in:
13
web/angular/src/app/admin-panel/admin-panel.component.html
Normal file
13
web/angular/src/app/admin-panel/admin-panel.component.html
Normal file
@@ -0,0 +1,13 @@
|
||||
<div class="container">
|
||||
<mat-card class="mat-elevation-z8">
|
||||
<mat-card-header>
|
||||
<mat-card-title>{{"admin_panel.title"|translate}}</mat-card-title>
|
||||
<mat-card-subtitle>{{"admin_panel.subtitle"|translate}}</mat-card-subtitle>
|
||||
</mat-card-header>
|
||||
|
||||
<mat-card-content>
|
||||
</mat-card-content>
|
||||
|
||||
<mat-card-actions></mat-card-actions>
|
||||
</mat-card>
|
||||
</div>
|
||||
16
web/angular/src/app/admin-panel/admin-panel.component.ts
Normal file
16
web/angular/src/app/admin-panel/admin-panel.component.ts
Normal file
@@ -0,0 +1,16 @@
|
||||
import {Component, OnInit} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-admin-panel',
|
||||
templateUrl: './admin-panel.component.html',
|
||||
styleUrls: ['./admin-panel.component.css']
|
||||
})
|
||||
export class AdminPanelComponent implements OnInit {
|
||||
|
||||
constructor() {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user