UNPKG

reldens

Version:
58 lines (56 loc) 1.72 kB
/** * * Reldens - TemplatesList * * Mapping of template keys to their corresponding HTML file names for the admin panel. * Includes main page templates, layout components, and field rendering templates for view and edit modes. * */ module.exports.TemplatesList = { login: 'login.html', dashboard: 'dashboard.html', management: 'management.html', themeManager: 'theme-manager.html', mapsWizard: 'maps-wizard.html', mapsWizardMapsSelection: 'maps-wizard-maps-selection.html', objectsImport: 'objects-import.html', skillsImport: 'skills-import.html', list: 'list.html', listContent: 'list-content.html', view: 'view.html', edit: 'edit.html', layout: 'layout.html', sideBar: 'sidebar.html', sideBarHeader: 'sidebar-header.html', sideBarItem: 'sidebar-item.html', paginationLink: 'pagination-link.html', defaultCopyRight: 'default-copyright.html', fields: { view: { audio: 'audio.html', audios: 'audios.html', text: 'text.html', textarea: 'textarea.html', image: 'image.html', images: 'images.html', link: 'link.html', links: 'links.html', boolean: 'boolean.html' }, edit: { text: 'text.html', textarea: 'textarea.html', select: 'select.html', checkbox: 'checkbox.html', boolean: 'checkbox.html', radio: 'radio.html', button: 'button.html', file: 'file.html' } }, sections: { view: { rooms: 'rooms.html' } } };