diff --git a/app/pods/login/controller.js b/app/pods/login/controller.js
index 5cf6e07..42e761d 100644
--- a/app/pods/login/controller.js
+++ b/app/pods/login/controller.js
@@ -1,6 +1,8 @@
import Ember from 'ember';
export default Ember.Controller.extend({
+ loading: false,
+
actions: {
authenticate: function() {
let credentials = this.getProperties('identification', 'password');
@@ -9,12 +11,12 @@ export default Ember.Controller.extend({
// Manually clean up because there might not be a transition
this.get('flashMessages').clearMessages();
- this.transitionToRoute('loading').then(() => {
- session.authenticate(authenticator, credentials).then(null, (error)=> {
- this.transitionToRoute('login');
- this.get('flashMessages').error(error.error);
- });
- });
+ this.set('loading', true).then(session.authenticate(authenticator, credentials).catch((error) => {
+ this.transitionToRoute('login');
+ this.set('loading', false);
+ this.get('flashMessages').error(error.error);
+ }));
+ this.set('loading', false);
}
}
});
diff --git a/app/pods/login/template.hbs b/app/pods/login/template.hbs
index c56ca42..7d3f5ac 100644
--- a/app/pods/login/template.hbs
+++ b/app/pods/login/template.hbs
@@ -1,12 +1,16 @@
{{#x-application invalidateSession="invalidateSession"}}
-
-
-
- Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}}
-
+ {{#if loading}}
+ {{loading-panel}}
+ {{else}}
+
+
+
+ Forget your password? {{link-to 'Request a lockout email.' 'users.requestlockouthelp'}}
+
+ {{/if}}
{{/x-application}}
diff --git a/app/pods/protected/species/edit/route.js b/app/pods/protected/species/edit/route.js
index 6d09cb9..e9e9076 100644
--- a/app/pods/protected/species/edit/route.js
+++ b/app/pods/protected/species/edit/route.js
@@ -16,4 +16,9 @@ export default Ember.Route.extend({
}
},
+ setupController: function(controller, model) {
+ controller.set('model', model);
+ controller.set('metaData', this.store.metadataFor('species'));
+ },
+
});
diff --git a/app/pods/protected/species/edit/template.hbs b/app/pods/protected/species/edit/template.hbs
index c3b8a05..aa8272e 100644
--- a/app/pods/protected/species/edit/template.hbs
+++ b/app/pods/protected/species/edit/template.hbs
@@ -1,6 +1,7 @@
{{
protected/species/species-form
species=model
+ metaData=metaData
save="save"
cancel="cancel"
}}
diff --git a/app/pods/protected/species/species-form/template.hbs b/app/pods/protected/species/species-form/template.hbs
index 011f62f..2b2ae76 100644
--- a/app/pods/protected/species/species-form/template.hbs
+++ b/app/pods/protected/species/species-form/template.hbs
@@ -11,8 +11,9 @@
{{input type="checkbox" checked=species.typeSpecies}} {{if species.typeSpecies 'Yes' 'No'}}
-
-
+ {{#unless species.isNew}}
+
+
{{#each species.strains as |strain index|}}
{{if index ","}}
@@ -20,11 +21,13 @@
{{{strain.strainNameMU}}}
{{/link-to}}
{{/each}}
- {{add-button label="Add Strain" link="protected.strains.new"}}
+ {{add-button label="Add Strain" link="protected.strains.new" canAdd=metaData.canAdd}}
-
-
+ {{/unless}}
+
+
+
{{text-editor value=species.etymology}}