Edit species
This commit is contained in:
parent
3b17955c0d
commit
6f0f9d8ea2
2 changed files with 20 additions and 0 deletions
14
app/pods/species/show/controller.js
Normal file
14
app/pods/species/show/controller.js
Normal file
|
@ -0,0 +1,14 @@
|
|||
import Ember from 'ember';
|
||||
|
||||
export default Ember.Controller.extend({
|
||||
userCanEdit: function() {
|
||||
let meta = this.store.metadataFor('species');
|
||||
let id = this.get('model.id');
|
||||
|
||||
if (meta.canEdit.indexOf( +id ) === -1) {
|
||||
return false
|
||||
}
|
||||
return true;
|
||||
}.property('model.isLoaded').readOnly(),
|
||||
|
||||
});
|
|
@ -55,3 +55,9 @@
|
|||
</fieldset>
|
||||
</div>
|
||||
</div>
|
||||
{{#if userCanEdit}}
|
||||
<br>
|
||||
{{#link-to 'species.edit' model class="button-gray smaller"}}
|
||||
Edit
|
||||
{{/link-to}}
|
||||
{{/if}}
|
||||
|
|
Reference in a new issue