From ae93751067bfefc84e6105f9c30515fa062131cd Mon Sep 17 00:00:00 2001 From: maliham31 Date: Sat, 3 Jun 2023 00:50:53 -0400 Subject: [PATCH 1/5] added html tab --- .../fd2_school/html/html.html | 69 +++++++++++++++++++ 1 file changed, 69 insertions(+) create mode 100644 farmdata2/farmdata2_modules/fd2_school/html/html.html diff --git a/farmdata2/farmdata2_modules/fd2_school/html/html.html b/farmdata2/farmdata2_modules/fd2_school/html/html.html new file mode 100644 index 0000000000..d2d7f99894 --- /dev/null +++ b/farmdata2/farmdata2_modules/fd2_school/html/html.html @@ -0,0 +1,69 @@ + +

Harvest Report

+

This page is a mockup of a simplified harvest report.

+ + + + +
+ + + + + + + +
+ + + +
+ + +
+ +

My Sample Harvest Report

+

Details:

+ + + + + + + + + + + + + + + + + + + + + + + + +
DateAreaCropYieldUnits
05/02/2018Chuau-1Kale10Bunches
05/052018SQ7Kale7Bunches
+ + \ No newline at end of file From 35bac0d0e5eda645c3aefb082d068d64e2a3d47c Mon Sep 17 00:00:00 2001 From: maliham31 Date: Sat, 3 Jun 2023 00:59:01 -0400 Subject: [PATCH 2/5] added vue1 tab --- .../fd2_school/vue1/vue1.html | 98 +++++++++++++++++++ 1 file changed, 98 insertions(+) create mode 100644 farmdata2/farmdata2_modules/fd2_school/vue1/vue1.html diff --git a/farmdata2/farmdata2_modules/fd2_school/vue1/vue1.html b/farmdata2/farmdata2_modules/fd2_school/vue1/vue1.html new file mode 100644 index 0000000000..449b01e592 --- /dev/null +++ b/farmdata2/farmdata2_modules/fd2_school/vue1/vue1.html @@ -0,0 +1,98 @@ + + + Vue Data Binding Spike + + + + +
+ +

Harvest Report

+

This page is a mockup of a simplified harvest report.

+ + + + +
+ + + + + + + +
+ + + + + + + +
+ + +
+ +

{{ harvestTitle == '' ? 'Mock Harvest Report' : harvestTitle }}

+ +

Details:

+
    +
  • Farm:Sample Farm
  • +
  • User:manager1
  • +
  • Language:English
  • +
    +
  • Start:{{ startDate }}
  • +
  • End:{{ endDate }}
  • +
  • Crop:{{ selectedCrop }}
  • +
+ + + + + + + + + + + + + + + + +
DateAreaCropYieldUnits
{{ harvestLog.date }}{{ harvestLog.area }}{{ harvestLog.crop }}{{ harvestLog.yield }}{{ harvestLog.units }}
+ +
+ + + + + + \ No newline at end of file From 02ed468cb08f9687f286576731878dd53d548094 Mon Sep 17 00:00:00 2001 From: maliham31 Date: Sat, 3 Jun 2023 01:00:41 -0400 Subject: [PATCH 3/5] added vue2 tab --- .../fd2_school/vue2/vue2.html | 108 ++++++++++++++++++ 1 file changed, 108 insertions(+) create mode 100644 farmdata2/farmdata2_modules/fd2_school/vue2/vue2.html diff --git a/farmdata2/farmdata2_modules/fd2_school/vue2/vue2.html b/farmdata2/farmdata2_modules/fd2_school/vue2/vue2.html new file mode 100644 index 0000000000..1f31c152e1 --- /dev/null +++ b/farmdata2/farmdata2_modules/fd2_school/vue2/vue2.html @@ -0,0 +1,108 @@ + + + Vue Data Binding Spike + + + + +
+ +

Harvest Report

+

This page is a mockup of a simplified harvest report.

+ + + + +
+ + + + + + + +
+ + + + + + + +
+ + +
+ +

{{ harvestTitle == '' ? 'Mock Harvest Report' : harvestTitle }}

+ +

Details:

+
    +
  • Farm:Sample Farm
  • +
  • User:manager1
  • +
  • Language:English
  • +
    +
  • Start:{{ startDate }}
  • +
  • End:{{ endDate }}
  • +
  • Crop:{{ selectedCrop }}
  • +
+ +

There are no Harvest Logs to be displayed.

+ + + + + + + + + + + + + + + + + + +
RowDateAreaCropYieldUnits
{{ index }}{{ harvestLog.date }}{{ harvestLog.area }}{{ harvestLog.crop }}{{ harvestLog.yield }}{{ harvestLog.units }}
+ +
+ + + + + + \ No newline at end of file From a6858dcfbb9041d4e46aaf07ed251f159d22a614 Mon Sep 17 00:00:00 2001 From: maliham31 Date: Sat, 3 Jun 2023 01:18:04 -0400 Subject: [PATCH 4/5] added api1 tab --- .../fd2_school/api1/api1.html | 152 ++++++++++++++++++ 1 file changed, 152 insertions(+) create mode 100644 farmdata2/farmdata2_modules/fd2_school/api1/api1.html diff --git a/farmdata2/farmdata2_modules/fd2_school/api1/api1.html b/farmdata2/farmdata2_modules/fd2_school/api1/api1.html new file mode 100644 index 0000000000..9632e7bebb --- /dev/null +++ b/farmdata2/farmdata2_modules/fd2_school/api1/api1.html @@ -0,0 +1,152 @@ + + + Vue Data Binding Spike + + + + +
+ +

Harvest Report

+

This page is a mockup of a simplified harvest report.

+ + + + +
+ + + + + + + +
+ + + + + + + +
+ + +
+ +

{{ harvestTitle == '' ? 'Mock Harvest Report' : harvestTitle }}

+ +

Details:

+
    +
  • Farm: {{ farm }}
  • +
  • User: {{ user }}
  • +
  • Language: {{ language }}
  • +
    +
  • Start:{{ startDate }}
  • +
  • End:{{ endDate }}
  • +
  • Crop:{{ selectedCrop }}
  • +
+ +

There are no Harvest Logs to be displayed.

+ + + + + + + + + + + + + + + + + + +
RowDateAreaCropYieldUnits
{{ index }}{{ harvestLog.date }}{{ harvestLog.area }}{{ harvestLog.crop }}{{ harvestLog.yield }}{{ harvestLog.units }}
+ +
+ + + + + + From 036f699d4d3a2a90d1d7d9b8166b3d3c58396645 Mon Sep 17 00:00:00 2001 From: maliham31 Date: Sat, 3 Jun 2023 01:18:44 -0400 Subject: [PATCH 5/5] added api2 tab --- .../fd2_school/api2/api2.html | 169 ++++++++++++++++++ 1 file changed, 169 insertions(+) create mode 100644 farmdata2/farmdata2_modules/fd2_school/api2/api2.html diff --git a/farmdata2/farmdata2_modules/fd2_school/api2/api2.html b/farmdata2/farmdata2_modules/fd2_school/api2/api2.html new file mode 100644 index 0000000000..abd3ac0f97 --- /dev/null +++ b/farmdata2/farmdata2_modules/fd2_school/api2/api2.html @@ -0,0 +1,169 @@ + + + Vue Data Binding Spike + + + + +
+ +

Harvest Report

+

This page is a mockup of a simplified harvest report.

+ + + + +
+ + + + + + + +
+ + + + + + + +
+ + +
+ +

{{ harvestTitle == '' ? 'Mock Harvest Report' : harvestTitle }}

+ +

Details:

+
    +
  • Farm: {{ farm }}
  • +
  • User: {{ user }}
  • +
  • Language: {{ language }}
  • +
    +
  • Start:{{ startDate }}
  • +
  • End:{{ endDate }}
  • +
  • Crop:{{ selectedCrop }}
  • +
+ +

There are no Harvest Logs to be displayed.

+ + + + + + + + + + + + + + + + + + +
RowDateAreaCropYieldUnits
{{ index }}{{ harvestLog.date }}{{ harvestLog.area }}{{ harvestLog.crop }}{{ harvestLog.yield }}{{ harvestLog.units }}
+ +
+ + + + + + \ No newline at end of file