diff --git a/app/controllers/strains/show.js b/app/controllers/strains/show.js
new file mode 100644
index 0000000..125549e
--- /dev/null
+++ b/app/controllers/strains/show.js
@@ -0,0 +1,14 @@
+import Ember from 'ember';
+
+export default Ember.Controller.extend({
+ isEditing: false,
+ actions: {
+ editStrain: function() {
+ this.get('model').get("errors").clear();
+ this.toggleProperty('isEditing');
+ },
+ saveStrain: function() {
+ this.get('model').save().then(this.toggleProperty('isEditing'));
+ }
+ }
+});
diff --git a/app/styles/app.css b/app/styles/app.css
index 1bd92ff..9d1b1df 100644
--- a/app/styles/app.css
+++ b/app/styles/app.css
@@ -6,6 +6,10 @@
cursor: pointer;
}
+.is-editing {
+ background-color: #FFFCE2;
+}
+
/* BEGIN https://github.com/tobiasahlin/SpinKit */
.spinner {
width: 40px;
diff --git a/app/templates/strains/show.hbs b/app/templates/strains/show.hbs
index c33b795..cc0393a 100644
--- a/app/templates/strains/show.hbs
+++ b/app/templates/strains/show.hbs
@@ -1,7 +1,16 @@
-