-
Notifications
You must be signed in to change notification settings - Fork 43
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* save_message_update_story: Update test after tox fix Add static word count message Make UI resemble capa text reponse Increase size of prompt text input Update node dependencies
- Loading branch information
Showing
23 changed files
with
1,167 additions
and
526 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,4 +3,5 @@ node_modules/ | |
*.pyc | ||
*.sw[op] | ||
.coverage | ||
coverage.xml | ||
.tox/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,28 @@ | ||
<div class="freetextresponse"> | ||
<div class="freetextresponse xmodule_display xmodule_CapaModule problem"> | ||
<h2 class="problem-header">{self.display_name}</h2> | ||
<div class="problem-progress">{problem_progress}</div> | ||
<p>{self.prompt}</p> | ||
<div class="user-input {indicator_class}"> | ||
<textarea class="student_answer" style="height:150px" rows="20" cols="70">{self.student_answer}</textarea> | ||
<span class="status {indicator_visibility_class}" aria-describedby="student_answer"></span> | ||
<div class="word-count-message">{word_count_message}</div> | ||
<div class="capa_inputtype textline"> | ||
<div class="user_input {indicator_class}"> | ||
<textarea class="student_answer" rows="20" cols="70">{self.student_answer}</textarea> | ||
<span class="status {visibility_class}" aria-describedby="student_answer"></span> | ||
</div> | ||
</div> | ||
<div class="submission-received"> | ||
<div class="capa_alert submission-received"> | ||
{submitted_message} | ||
</div> | ||
<div class="word-count-error"> | ||
{word_count_message} | ||
</div> | ||
<div class="action"> | ||
<span class="{submit_class}"> | ||
<button class="check Submit" data-checking="Checking..." data-value="Submit" aria-disabled="false"> | ||
Submit | ||
</button> | ||
</span> | ||
<button class="check Submit {nodisplay_class}" data-checking="Checking..." data-value="Submit"> | ||
Submit | ||
</button> | ||
<button class="save {nodisplay_class}" data-value="Save"> | ||
Save | ||
</button> | ||
<div class="used-attempts-feedback" aria-live="polite">{used_attempts_feedback}</div> | ||
</div> | ||
<div class="capa_alert user_alert"> | ||
{user_alert} | ||
</div> | ||
</div> | ||
|
Oops, something went wrong.