1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- extends ./_layout.pug
- block adminContent
- .hero
- h1.title#title= t('nav.sysinfo')
- h2.subtitle= t('admin:system.subtitle')
- i.pageicon.nc-icon-outline.objects_planet
- admin-settings(inline-template)
- .form-sections
- section
- img(src='/images/logo.png', style={width:'200px', float:'right'})
- label.label= t('admin:system.systemversion')
- .section-block
- p #{t('admin:system.currentversion')}: #[strong= sysversion.current]
- if sysversion.latest
- p #{t('admin:system.latestversion')}: #[strong= sysversion.latest] #[em (Published #{moment(sysversion.latestPublishedAt).fromNow()})]
- p
- if sysversion.current !== sysversion.latest
- button.button.is-deep-orange(@click='$store.dispatch("modalUpgradeSystem/open", { mode: "upgrade"})')= t('admin:system.upgrade')
- else
- button.button.is-disabled= t('admin:system.upgrade')
- button.button.is-deep-orange.is-outlined(@click='$store.dispatch("modalUpgradeSystem/open", { mode: "reinstall"})')= t('admin:system.reinstall')
- else
- p: em= t('admin:system.versioncheckfailed')
- section
- label.label= t('admin:system.hostinfo')
- .section-block
- p #{t('admin:system.os')}: #[strong= hostInfo.os]
- p #{t('admin:system.nodeversion')}: #[strong= hostInfo.nodeversion]
- p #{t('admin:system.hostname')}: #[strong= hostInfo.hostname]
- p #{t('admin:system.cores')}: #[strong= hostInfo.cpus.length]
- p #{t('admin:system.totalmem')}: #[strong= hostInfo.totalmem]
- p #{t('admin:system.cwd')}: #[strong= hostInfo.cwd]
- section
- label.label= t('admin:system.administrativetools')
- .section-block
- h6 #{t('admin:system.flushcache')}:
- p.is-small= t('admin:system.flushcachetext')
- p: button.button.is-teal.is-outlined(v-on:click='flushcache')= t('admin:system.flushcachebtn')
- h6 #{t('admin:system.resetaccounts')}:
- p.is-small= t('admin:system.resetaccountstext')
- p: button.button.is-teal.is-outlined(v-on:click='resetaccounts')= t('admin:system.resetaccountsbtn')
- h6 #{t('admin:system.flushsessions')}:
- p.is-small= t('admin:system.flushsessionstext')
- p: button.button.is-teal.is-outlined(v-on:click='flushsessions')= t('admin:system.flushsessionsbtn')
- modal-upgrade-system
|