diff --git a/dashboard/src/app/album.component.html b/dashboard/src/app/album.component.html index 8bf9dfd..48cad74 100644 --- a/dashboard/src/app/album.component.html +++ b/dashboard/src/app/album.component.html @@ -1,3 +1,4 @@ +

{{albumName}}

@@ -8,13 +9,62 @@
- - - +
+
+
+
+
+
+ +
+
+
+

+

{{album.Rating}}/100

+
+

Rating
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+

+

{{album['Track Count']}}

+
+

Songs
+
+
+
+
+
+
+
+
+
+
+ +
+
+
+

+

{{album['Play Count']}} list.

+
+

~{{album['Play Count'] / album['Track Count'] | number:'1.0-0'}} listening avg.
+
+
+
+
+
+
@@ -47,4 +97,5 @@ \ No newline at end of file + + \ No newline at end of file diff --git a/dashboard/src/app/album.component.ts b/dashboard/src/app/album.component.ts index 3e91ded..e3d54b1 100644 --- a/dashboard/src/app/album.component.ts +++ b/dashboard/src/app/album.component.ts @@ -9,7 +9,7 @@ import { Album } from './object/album'; @Component({ selector: 'album-component', templateUrl: './album.component.html', - styleUrls: [ './album.component.css' ] + styleUrls: [ './album.component.css', './dashboard.component.css' ] }) export class AlbumComponent implements OnInit {