diff --git a/app/adapters/species.js b/app/adapters/species.js deleted file mode 100644 index 2c5e29d..0000000 --- a/app/adapters/species.js +++ /dev/null @@ -1,5 +0,0 @@ -import DS from 'ember-data'; - -export default DS.RESTAdapter.reopen({ - namespace: 'api' -}); diff --git a/app/router.js b/app/router.js index 457fe4f..05396c9 100644 --- a/app/router.js +++ b/app/router.js @@ -14,7 +14,6 @@ Router.map(function() { this.resource('strain', { path: '/strain/:strain_id' }, function() { this.resource('measurements'); }); - this.resource('measurements'); this.resource('measurement', { path: '/measurement/:measurement_id' }); }); diff --git a/app/templates/measurements.hbs b/app/templates/measurement.hbs similarity index 97% rename from app/templates/measurements.hbs rename to app/templates/measurement.hbs index 51ee84b..3b6e6a5 100644 --- a/app/templates/measurements.hbs +++ b/app/templates/measurement.hbs @@ -1,5 +1,4 @@
- {{#each}}
{{id}} @@ -49,5 +48,4 @@
- {{/each}}
diff --git a/app/templates/strain.hbs b/app/templates/strain.hbs index 96eb99c..ed914a4 100644 --- a/app/templates/strain.hbs +++ b/app/templates/strain.hbs @@ -50,4 +50,62 @@ +
+ {{#each measurements}} +
+
+
+ {{id}} +
+
+
Characteristic
+
{{characteristicId}}
+
+
+
Text Measurement Type
+
{{textMeasurementTypeId}}
+
+
+
Text Value
+
{{txtValue}}
+
+
+
+
+
Numerical Value
+
{{numValue}}
+
+
+
Confidence Interval
+
{{confidenceInterval}}
+
+
+
Unit Type
+
{{unitTypeId}}
+
+
+
+
+
Notes
+
{{notes}}
+
+
+
Test Method
+
{{testMethodId}}
+
+
+
+
+
Created
+
{{createdAt}}
+
+
+
Updated
+
{{updatedAt}}
+
+
+
+
+
+ {{/each}}