51 lines
1.2 KiB
JavaScript
51 lines
1.2 KiB
JavaScript
|
|
exports.render_event_records = function (events) {
|
|
console.log('Rendering event records...');
|
|
}
|
|
|
|
|
|
exports.render_event_file_records = function (events) {
|
|
console.log('Rendering event file records...');
|
|
}
|
|
|
|
|
|
exports.render_event_location_records = function (events) {
|
|
console.log('Rendering event location records...');
|
|
}
|
|
|
|
|
|
exports.render_event_location_file_records = function (events) {
|
|
console.log('Rendering event location file records...');
|
|
}
|
|
|
|
|
|
exports.render_event_session_records = function (events) {
|
|
console.log('Rendering event session records...');
|
|
}
|
|
|
|
|
|
exports.render_event_session_file_records = function (events) {
|
|
console.log('Rendering event session file records...');
|
|
}
|
|
|
|
|
|
exports.render_event_presentation_records = function (events) {
|
|
console.log('Rendering event presentation records...');
|
|
}
|
|
|
|
|
|
exports.render_event_presention_file_records = function (events) {
|
|
console.log('Rendering event presentation file records...');
|
|
}
|
|
|
|
|
|
exports.render_event_presenter_records = function (events) {
|
|
console.log('Rendering event presenter records...');
|
|
}
|
|
|
|
|
|
exports.render_event_presenter_file_records = function (events) {
|
|
console.log('Rendering event presenter file records...');
|
|
}
|
|
|