diff --git a/frontend/pages/applications/[slug].vue b/frontend/pages/applications/[slug].vue new file mode 100644 index 0000000..c072251 --- /dev/null +++ b/frontend/pages/applications/[slug].vue @@ -0,0 +1,345 @@ + + + + + + + + {{ t('applications.title') }} + + + + + + + + + + + + + + + + {{ application.name }} + {{ application.description }} + + + + {{ t('applications.detail.editButton') }} + + + {{ t('applications.detail.deleteButton') }} + + + + + + {{ t('applications.detail.registryImage') }} : + {{ application.registryImage }} + + + {{ t('applications.detail.giteaUrl') }} : + + {{ application.giteaUrl }} + + + + + + + + + + {{ t('applications.form.name') }} + + + + {{ t('applications.form.slug') }} + + + + {{ t('applications.form.registryImage') }} + + + + {{ t('applications.form.giteaUrl') }} + + + + + {{ t('applications.form.description') }} + + + + + {{ t('applications.form.cancel') }} + + + {{ t('applications.form.save') }} + + + + + + + + + {{ t('environments.title') }} + + {{ t('environments.addButton') }} + + + + + + + + + {{ t('environments.form.name') }} + + + + {{ t('environments.form.containerName') }} + + + + {{ t('environments.form.deployScriptPath') }} + + + + {{ t('environments.form.maintenanceFilePath') }} + + + + {{ t('environments.form.appUrl') }} + + + + + + + + {{ t('environments.logFiles.title') }} + + + {{ t('environments.logFiles.addButton') }} + + + + + + + + + + + + + + {{ t('environments.form.cancel') }} + + + {{ t('environments.form.save') }} + + + + + + + + {{ t('applications.card.noEnvironments') }} + + + + + + + {{ env.name }} + + {{ env.maintenance ? t('environments.maintenance.active') : t('environments.maintenance.inactive') }} + + + {{ env.containerName }} + + {{ env.appUrl }} + + + + + + {{ pendingMaintenanceByEnvId[env.id!] + ? t('environments.maintenance.pending') + : env.maintenance + ? t('environments.maintenance.deactivate') + : t('environments.maintenance.activate') + }} + + + {{ t('environments.editButton') }} + + + {{ t('environments.deleteButton') }} + + + + + + + {{ t('environments.logFiles.title') }} + + {{ lf.label }} : + {{ lf.path }} + + + + + + +
{{ application.description }}
{{ env.containerName }}
{{ t('environments.logFiles.title') }}