2014-12-23 21:09:30 -05:00
|
|
|
Template.checkout.helpers({
|
|
|
|
|
chromebooks: function() {
|
|
|
|
|
return Chromebooks.find();
|
|
|
|
|
}
|
2015-01-01 00:57:53 -05:00
|
|
|
});
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Template.checkout.events({
|
2015-01-01 02:39:39 -05:00
|
|
|
'click .edit': function() {
|
|
|
|
|
if (Roles.userIsInRole(Meteor.userId(), ['admin'])) {
|
|
|
|
|
Router.go('/admin');
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
alert("Access Denied");
|
|
|
|
|
}
|
2015-01-11 23:35:30 -05:00
|
|
|
},
|
|
|
|
|
'click .teacher': function() {
|
|
|
|
|
if (Roles.userIsInRole(Meteor.userId(), ['admin', 'teacher'])) {
|
|
|
|
|
Router.go('/teacher');
|
|
|
|
|
}
|
|
|
|
|
else {
|
|
|
|
|
alert("Access Denied");
|
|
|
|
|
}
|
2015-01-01 00:57:53 -05:00
|
|
|
}
|
2014-12-23 21:09:30 -05:00
|
|
|
});
|