From 96def1539b99e3a48b46c6275e5a0d0ba12d8b42 Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 24 Apr 2015 08:16:08 -0800 Subject: [PATCH] Add strain notes --- app/models/strain.js | 1 + app/templates/strains/show.hbs | 9 ++++++++- server/mocks/strains.js | 4 ++++ 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/app/models/strain.js b/app/models/strain.js index d411a5d..f73278e 100644 --- a/app/models/strain.js +++ b/app/models/strain.js @@ -9,6 +9,7 @@ export default DS.Model.extend({ accessionBanks: DS.attr('string'), genbankEmblDdb: DS.attr('string'), isolatedFrom: DS.attr('string'), + notes: DS.attr('string'), createdAt: DS.attr('date'), updatedAt: DS.attr('date'), deletedAt: DS.attr('date'), diff --git a/app/templates/strains/show.hbs b/app/templates/strains/show.hbs index a3e72f3..c2d2e8f 100644 --- a/app/templates/strains/show.hbs +++ b/app/templates/strains/show.hbs @@ -32,6 +32,13 @@ {{! ROW 4 }} +
+
+
Notes
+
{{model.notes}}
+
+
+ {{! ROW 5 }}
Record Created
@@ -48,7 +55,7 @@
{{#if (can "edit strain" model)}} - {{! ROW 5 }} + {{! ROW 6 }}
{{! Does nothing ATM }} diff --git a/server/mocks/strains.js b/server/mocks/strains.js index a6a8d26..1a29aaa 100644 --- a/server/mocks/strains.js +++ b/server/mocks/strains.js @@ -17,6 +17,7 @@ module.exports = function(app) { updatedAt: "0001-01-01T00:00:00Z", deletedAt: null, author: 1, + notes: "Test notes", totalMeasurements: 5, }, { @@ -32,6 +33,7 @@ module.exports = function(app) { createdAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z", deletedAt: null, + notes: "Test notes", author: 3, totalMeasurements: 5, }, @@ -47,6 +49,7 @@ module.exports = function(app) { measurements: [], createdAt: "0001-01-01T00:00:00Z", updatedAt: "0001-01-01T00:00:00Z", + notes: "Test notes", deletedAt: null, author: 1, totalMeasurements: 0, @@ -62,6 +65,7 @@ module.exports = function(app) { isolatedFrom: "Location 2", measurements: [], createdAt: "0001-01-01T00:00:00Z", + notes: "Test notes", updatedAt: "0001-01-01T00:00:00Z", deletedAt: null, author: 3,