@@ -61,24 +61,24 @@ Template.admin_success_status.helpers({
61
61
Template . admin_organisations . helpers ( {
62
62
settings : function ( ) {
63
63
return {
64
- onDelete : function ( params ) {
65
- Meteor . call ( 'users.remove' , params . ids ) ;
66
- } ,
67
64
collection : App . Collections . orgLogs ,
68
- rowsPerPage : 10 ,
65
+ rowsPerPage : 100 ,
69
66
showFilter : true ,
67
+ crudMenu : false ,
70
68
fields : [
71
69
{ key : 'timestamp' , label : 'Timestamp' , sortOrder : 0 , sortDirection : 'descending' } ,
72
70
{ key : 'statusCode' , label : 'Success' , tmpl : Template . admin_success_status } ,
73
- { key : 'url' , label : 'URL' } ,
74
- { key : 'error' , label : 'Error' , tmpl : Template . admin_error_button } ,
71
+ { key : 'url' , label : 'URL' , tmpl : Template . admin_log_url } ,
72
+ { key : 'successCount' , label : 'Success' } ,
73
+ { key : 'failureCount' , label : 'Failures' } ,
74
+ { key : 'error' , label : 'Error' , tmpl : Template . admin_error_button , sortable : false } ,
75
75
]
76
76
} ;
77
77
} ,
78
78
orgLogs : function ( ) {
79
79
return App . Collections . OrgLogs ;
80
80
}
81
- } )
81
+ } ) ;
82
82
83
83
Template . admin . events ( {
84
84
'click .usersButton' : function ( event , template ) {
0 commit comments