Files
codeocean/app/views/exercises/_code_field.html.slim
Sebastian Serth 9a9efd5caa Lint Slim files and fix offenses
The fixing was partially done manually and partially automatically.
2024-04-18 08:31:24 +02:00

8 lines
410 B
Plaintext

.mb-3
= form.label(attribute, label, class: 'form-label')
= form.text_area(attribute, class: 'code-field form-control', rows: 16, style: 'display:none;')
= render partial: 'editor_edit', locals: {exercise: @exercise}
.card.border-warning.p-2.my-2
= form.file_field(attribute, class: 'form-control', style: 'display: inline-block;')
.help-block.form-text = t('exercises.file_form.hints.upload')