The Open Source kanban (built with Meteor). Keep variable/table/field names camelCase. For translations, only add Pull Request changes to wekan/i18n/en.i18n.json , other translations are done at https://transifex.com/wekan/wekan only.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
template(name="migrationProgress")
|
|
|
.migration-overlay(class="{{#if isMigrating}}active{{/if}}")
|
|
|
.migration-modal
|
|
|
.migration-header
|
|
|
h3
|
|
|
| 🗄️
|
|
|
| {{_ 'database-migration'}}
|
|
|
p {{_ 'database-migration-description'}}
|
|
|
|
|
|
.migration-content
|
|
|
.migration-overview
|
|
|
.overall-progress
|
|
|
.progress-bar
|
|
|
.progress-fill(style="width: {{migrationProgress}}%")
|
|
|
.progress-text {{migrationProgress}}%
|
|
|
.progress-label {{_ 'overall-progress'}}
|
|
|
|
|
|
.current-step
|
|
|
| ⚙️
|
|
|
| {{migrationCurrentStep}}
|
|
|
|
|
|
.estimated-time(style="{{#unless migrationEstimatedTime}}display: none;{{/unless}}")
|
|
|
| ⏰
|
|
|
| {{_ 'estimated-time-remaining'}}: {{migrationEstimatedTime}}
|
|
|
|
|
|
.migration-steps
|
|
|
h4 {{_ 'migration-steps'}}
|
|
|
.steps-list
|
|
|
each migrationSteps
|
|
|
.migration-step(class="{{#if completed}}completed{{/if}}" class="{{#if isCurrentStep}}current{{/if}}")
|
|
|
.step-header
|
|
|
.step-icon
|
|
|
if completed
|
|
|
| ✅
|
|
|
else if isCurrentStep
|
|
|
| ⚙️
|
|
|
else
|
|
|
| ⭕
|
|
|
.step-info
|
|
|
.step-name {{name}}
|
|
|
.step-description {{description}}
|
|
|
.step-progress
|
|
|
if completed
|
|
|
.progress-text 100%
|
|
|
else if isCurrentStep
|
|
|
.progress-text {{progress}}%
|
|
|
else
|
|
|
.progress-text 0%
|
|
|
if isCurrentStep
|
|
|
.step-progress-bar
|
|
|
.progress-fill(style="width: {{progress}}%")
|
|
|
|
|
|
.migration-status
|
|
|
| ℹ️
|
|
|
| {{migrationStatus}}
|
|
|
|
|
|
.migration-footer
|
|
|
.migration-info
|
|
|
| 💡
|
|
|
| {{_ 'migration-info-text'}}
|
|
|
.migration-warning
|
|
|
| ⚠️
|
|
|
| {{_ 'migration-warning-text'}}
|
|
|
|