From 8ae03c37181822617418d1fc372982b245ac0a9a Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Tue, 3 Sep 2019 09:49:04 +0200 Subject: Add creation reason --- .../app/+about/about-instance/about-instance.component.html | 12 +++++++++--- .../app/+about/about-instance/about-instance.component.ts | 2 ++ 2 files changed, 11 insertions(+), 3 deletions(-) (limited to 'client/src/app/+about/about-instance') diff --git a/client/src/app/+about/about-instance/about-instance.component.html b/client/src/app/+about/about-instance/about-instance.component.html index 80acfcce0..8b21137af 100644 --- a/client/src/app/+about/about-instance/about-instance.component.html +++ b/client/src/app/+about/about-instance/about-instance.component.html @@ -24,19 +24,25 @@
-
Who are we?
+
Who we are
+
+
Why we created this instance
+ +

{{ creationReason }}

+
+
-
How long do we plan to maintain this instance?
+
How long we plan to maintain this instance

{{ maintenanceLifetime }}

-
How will we pay this instance?
+
How we will pay this instance

{{ businessModel }}

diff --git a/client/src/app/+about/about-instance/about-instance.component.ts b/client/src/app/+about/about-instance/about-instance.component.ts index e2c448501..b6cade4fe 100644 --- a/client/src/app/+about/about-instance/about-instance.component.ts +++ b/client/src/app/+about/about-instance/about-instance.component.ts @@ -25,6 +25,7 @@ export class AboutInstanceComponent implements OnInit { administrator: '' } + creationReason = '' maintenanceLifetime = '' businessModel = '' @@ -61,6 +62,7 @@ export class AboutInstanceComponent implements OnInit { async ([ about, translations ]) => { this.shortDescription = about.instance.shortDescription + this.creationReason = about.instance.creationReason this.maintenanceLifetime = about.instance.maintenanceLifetime this.businessModel = about.instance.businessModel -- cgit v1.2.3