Added graphs and charts; Updated a lot of the collections for security and consistency; Updated all of the page to fix bugs and propagate fixes to all templates; Added the d3 library for graphing; Added a real ui for Measures and Venues.
This commit is contained in:
@@ -56,4 +56,25 @@ pri.route('/pricing', {
|
||||
require("/imports/ui/Pricing.js");
|
||||
BlazeLayout.render('Body', {content: 'Pricing'});
|
||||
}
|
||||
});
|
||||
pri.route('/venues', {
|
||||
name: 'Venues',
|
||||
action: function(params, queryParams) {
|
||||
require("/imports/ui/Venues.js");
|
||||
BlazeLayout.render('Body', {content: 'Venues'});
|
||||
}
|
||||
});
|
||||
pri.route('/graphs', {
|
||||
name: 'Graphs',
|
||||
action: function(params, queryParams) {
|
||||
require("/imports/ui/Graphs.js");
|
||||
BlazeLayout.render('Body', {content: 'Graphs'});
|
||||
}
|
||||
});
|
||||
pri.route('/graphTest', {
|
||||
name: 'GraphTest',
|
||||
action: function(params, queryParams) {
|
||||
require("/imports/ui/GraphTest.js");
|
||||
BlazeLayout.render('Body', {content: 'GraphTest'});
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user