+
+ Entries
+
+
+
+
+
+
+ Date
+ {{ row.date }}
+
+
+
+
+ Type
+ {{ row.type }}
+
+
+
+
+ Narration
+ {{ row.narration }}
+
+
+
+
+ Debit
+
+
+
+
+
+
+
+ Credit
+
+
+
+
+
+
+
+ Amount
+ {{ row.amount | currency: 'INR' }}
+
+
+
+
+ User
+
+
+ - {{ row.creationDate | localTime }}
+ - {{ row.lastEditDate | localTime }}
+ - {{ row.user.name }}
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/overlord/src/app/unposted/unposted.component.spec.ts b/overlord/src/app/entries/entries.component.spec.ts
similarity index 66%
rename from overlord/src/app/unposted/unposted.component.spec.ts
rename to overlord/src/app/entries/entries.component.spec.ts
index 43a3e076..c75ffa26 100644
--- a/overlord/src/app/unposted/unposted.component.spec.ts
+++ b/overlord/src/app/entries/entries.component.spec.ts
@@ -2,23 +2,23 @@ import { HttpClientModule } from '@angular/common/http';
import { ComponentFixture, TestBed, waitForAsync } from '@angular/core/testing';
import { RouterTestingModule } from '@angular/router/testing';
-import { UnpostedComponent } from './unposted.component';
+import { EntriesComponent } from './entries.component';
-describe('UnpostedComponent', () => {
- let component: UnpostedComponent;
- let fixture: ComponentFixture