diff --git a/app/models/collection.js b/app/models/collection.js
index 4056cd3..e8cc45a 100644
--- a/app/models/collection.js
+++ b/app/models/collection.js
@@ -11,6 +11,7 @@ export default Model.extend({
collectionStartTime: attr('string-null-to-empty'),
collectionEndDate: attr('string-null-to-empty'),
collectionEndTime: attr('string-null-to-empty'),
+ notes: attr('string'),
project: belongsTo('project'),
studyLocation: belongsTo('study-location'),
diff --git a/app/templates/components/collection/create-container.hbs b/app/templates/components/collection/create-container.hbs
index 48d4f3c..9933bfe 100644
--- a/app/templates/components/collection/create-container.hbs
+++ b/app/templates/components/collection/create-container.hbs
@@ -92,95 +92,105 @@
-
-
- Species / Count Info
- {{action-button isSuccess=true isXSmall=true label='+' onClick=(action 'addHasMany' 'collection-species' 'collectionSpecies')}}
-
-
-
- Species |
- Count |
- Count Estimated |
- Sex |
- Delete |
-
-
-
- {{#each changesets.hasMany.collectionSpecies as |cs|}}
-
-
- {{#validated-field property='species' changeset=cs.changeset}}
- {{#power-select
- options=options.species
- selected=cs.changeset.species
- onchange=(action (mut cs.changeset.species))
- searchField='commonName'
- as |species|
- }}
- {{species.commonName}}
- {{/power-select}}
- {{/validated-field}}
- |
-
- {{#validated-field property='count' changeset=cs.changeset}}
- {{input value=cs.changeset.count}}
- {{/validated-field}}
- |
-
- {{#validated-field property='countEstimated' changeset=cs.changeset}}
- {{input checked=cs.changeset.countEstimated type='checkbox'}}
- {{/validated-field}}
- |
-
- {{#validated-field property='sex' changeset=cs.changeset}}
- {{input value=cs.changeset.sex}}
- {{/validated-field}}
- |
-
- {{action-button isDanger=true isXSmall=true label='X' onClick=(action 'deleteHasMany' cs 'collectionSpecies')}}
- |
-
- {{/each}}
-
-
-
-
-
-
-
-
+
+
+ {{#validated-field property='notes' label='Notes' changeset=changesets.model}}
+ {{textarea value=changesets.model.notes class='form-control'}}
+ {{/validated-field}}
+
+
+
+
+
+
+ Species / Count Info
+ {{action-button isSuccess=true isXSmall=true label='+' onClick=(action 'addHasMany' 'collection-species' 'collectionSpecies')}}
+
+
+
+ Species |
+ Count |
+ Count Estimated |
+ Sex |
+ Delete |
+
+
+
+ {{#each changesets.hasMany.collectionSpecies as |cs|}}
+
+
+ {{#validated-field property='species' changeset=cs.changeset}}
+ {{#power-select
+ options=options.species
+ selected=cs.changeset.species
+ onchange=(action (mut cs.changeset.species))
+ searchField='commonName'
+ as |species|
+ }}
+ {{species.commonName}}
+ {{/power-select}}
+ {{/validated-field}}
+ |
+
+ {{#validated-field property='count' changeset=cs.changeset}}
+ {{input value=cs.changeset.count}}
+ {{/validated-field}}
+ |
+
+ {{#validated-field property='countEstimated' changeset=cs.changeset}}
+ {{input checked=cs.changeset.countEstimated type='checkbox'}}
+ {{/validated-field}}
+ |
+
+ {{#validated-field property='sex' changeset=cs.changeset}}
+ {{input value=cs.changeset.sex}}
+ {{/validated-field}}
+ |
+
+ {{action-button isDanger=true isXSmall=true label='X' onClick=(action 'deleteHasMany' cs 'collectionSpecies')}}
+ |
+
+ {{/each}}
+
+
+
+
+
{{f.save}} {{f.cancel}}
diff --git a/app/templates/components/collection/detail-container.hbs b/app/templates/components/collection/detail-container.hbs
index 5556e18..23f66aa 100644
--- a/app/templates/components/collection/detail-container.hbs
+++ b/app/templates/components/collection/detail-container.hbs
@@ -36,11 +36,7 @@
Notes
-
- - PLACEHOLDER
- - PLACEHOLDER
- - PLACEHOLDER
-
+ {{model.[0].notes}}