
Tags can be added to exercises in the edit view. Tags can monitored under /tags. Added the concept of ProxyExercises which are a collection of Exercises. They can be found under /proxy_exercises Added Interventions as prework to show interventions later to the user. Added exercise/[:id]/working_time to return the working time of the user in this exercise and the average working time of all users in this exercise
26 lines
718 B
Plaintext
26 lines
718 B
Plaintext
.row
|
|
#editor-column.col-md-12
|
|
div
|
|
span.badge.pull-right.score
|
|
|
|
h1 id="exercise-headline"
|
|
i class="fa fa-chevron-down" id="description-symbol"
|
|
= @exercise
|
|
|
|
#description-panel.lead.description-panel
|
|
= render_markdown(@exercise.description)
|
|
|
|
#alert.alert.alert-danger role='alert'
|
|
h4 = t('.alert.title')
|
|
p = t('.alert.text', application_name: application_name)
|
|
|
|
#development-environment
|
|
.tab-content
|
|
#workspace.tab-pane.active = render('editor', exercise: @exercise, files: @files, submission: @submission)
|
|
|
|
- if qa_url
|
|
#questions-column
|
|
#questions-holder data-url="#{qa_url}/qa/index/#{@exercise.id}/#{@user_id}"
|
|
= qa_js_tag
|
|
|