18 lines
336 B
JavaScript
18 lines
336 B
JavaScript
|
|
import { FlowRouter } from 'meteor/ostrio:flow-router-extra';
|
||
|
|
import { Workouts } from '../../../imports/api/workouts.js';
|
||
|
|
|
||
|
|
Template.workoutsLog.onCreated(function() {
|
||
|
|
this.subscribe("myWorkoutRoutines");
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.workoutsLog.onRendered(function() {
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.workoutsLog.helpers({
|
||
|
|
|
||
|
|
});
|
||
|
|
|
||
|
|
Template.workoutsLog.events({
|
||
|
|
|
||
|
|
});
|