Fix merge conflicts

This commit is contained in:
Ben Goldsworthy 2020-11-01 18:04:06 +00:00
commit 7e35ccaec4
11 changed files with 73 additions and 28 deletions

View file

@ -1,16 +1,22 @@
<div class="animated fadeIn">
<div class="row">
<div class="col-lg-12">
<div class="col-lg-6 col-md-8">
<div class="card">
<div class="card-header">
<strong>Submit Transaction</strong>
<strong>Record Transaction</strong>
<small>Required Data marked in <strong>bold</strong>.</small>
</div>
<div class="card-block">
<div class="form-group row">
<label class="col-md-3 form-control-label" for="text-input"><strong>Time of Transaction</strong></label>
<div class="col-md-9">
<input type="datetime-local" class="form-control" [min]="minDate" [(ngModel)]="myDate" (ngModelChange)="transactionFormValidate()">
<input
type="datetime-local"
class="form-control"
[min]="minDate"
[(ngModel)]="myDate"
(ngModelChange)="transactionFormValidate()"
>
<span class="help-block">Enter the date and time the transaction occurred.</span>
</div>
</div>
@ -21,7 +27,7 @@
<span class="input-group-addon"><i class="fa fa-gbp"></i></span>
<input type="number" min="0.00" step="0.01" class="form-control" placeholder="0.00" [(ngModel)]="amount" (ngModelChange)="transactionFormValidate()">
</div>
<span class="help-block">Enter the amount spent, such as 5.35 for £5.35.</span>
<span class="help-block">Enter the amount spent, such as &lsquo;5.35&rsquo; for &pound;5.35.</span>
</div>
</div>
@ -29,7 +35,7 @@
<label class="col-md-3 form-control-label" for="text-input">Essential Purchase</label>
<div class="col-md-9">
<div class="input-group">
<input type="checkbox" class="mr-auto" [(ngModel)]="essentialPurchase" (ngModelChange)="transactionFormValidate()">
<input type="checkbox" class="mr-1" [(ngModel)]="essentialPurchase" (ngModelChange)="transactionFormValidate()">
<span class="help-block">Tick if the purchase is deemed an essential purchase for budgeting purposes.</span>
</div>
</div>
@ -38,7 +44,7 @@
<label class="col-md-3 form-control-label" for="text-input">Recurring Purchase</label>
<div class="col-md-9">
<div class="input-group">
<input type="checkbox" class="mr-auto" [(ngModel)]="recurringPurchase" (ngModelChange)="transactionFormValidate()">
<input type="checkbox" class="mr-1" [(ngModel)]="recurringPurchase" (ngModelChange)="transactionFormValidate()">
<span class="help-block">Tick if the purchase frequently recurs, such as monthly.</span>
</div>
</div>

View file

@ -48,7 +48,7 @@ const routes: Routes = [
{
path: 'add-data',
component: AddDataComponent,
data: { title: 'Add Transaction' },
data: { title: 'Record Transaction' },
},
{
path: 'leaderboard',
@ -85,7 +85,7 @@ const routes: Routes = [
{
path: 'feedback',
component: FeedbackComponent,
data: { title: 'Give Feedback' },
data: { title: 'Submit Feedback' },
},
{
path: 'suppliers',

View file

@ -1,9 +1,9 @@
<div class="animated fadeIn">
<div class="row">
<div class="col-lg-12">
<div class="col-lg-6 col-md-8">
<div class="card">
<div class="card-header">
<strong>Submit Transaction</strong>
<strong>Submit Feedback</strong>
<small>Required Data marked in <strong>bold</strong>.</small>
</div>
<form class="form-horizontal" [formGroup]="feedbackForm" (ngSubmit)="onSubmit()">

View file

@ -27,7 +27,7 @@
<table class="table table-striped table-hover">
<thead>
<tr>
<th>Ward</th>
<th>Type</th>
<th>Amount of Transactions</th>
<th>Sum of Transactions</th>
</tr>

View file

@ -1,6 +1,6 @@
<div class="animated fadeIn">
<div class="row">
<div class="col-lg-12">
<div class="col-lg-6 col-md-8">
<div class="card">
<div class="card-header">
<h4>Search Suppliers</h4>
@ -20,7 +20,7 @@
</div>
<div class="animated fadeIn">
<div class="row">
<div class="col-lg-12">
<div class="col-lg-6 col-md-8">
<div class="card">
<div class="card-header">
<h4>List of Suppliers</h4>