Skip to content

Commit

Permalink
Merge pull request #173 from datasci4health/development
Browse files Browse the repository at this point in the history
Development
  • Loading branch information
marcosfmmota authored Aug 14, 2020
2 parents a9ce38f + 135c50d commit 7460986
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
1 change: 1 addition & 0 deletions src/adonisjs/app/Controllers/Http/CaseController.js
Original file line number Diff line number Diff line change
Expand Up @@ -158,6 +158,7 @@ class CaseController {
domain: params.domain,
specialty: params.specialty,
keywords: params.keywords,
originalDate: params.originalDate,
source: params.source
},
headers: {
Expand Down
5 changes: 1 addition & 4 deletions src/adonisjs/public/templates/simple/case/quiz_short.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,16 +9,13 @@ Write here the **stem** of your quiz.
+ Distractor 3 <-> "Feedback for Distractor 3"
* Next Case -> Case.Next
* Menu -> Presentation

# Presentation Note (note)

You answered: ^Presentation.hypothesis^.
You answered: ^Presentation.input^.

^parameter^

* Return -> Presentation

___ Flow ___

* Sequential:
Expand Down
4 changes: 2 additions & 2 deletions src/adonisjs/public/themes/simple/css/dcc-trigger.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@

@media (orientation: landscape) {
.dcc-trigger-theme {
height: 40px;
width: 600px;
height: 80px;
width: 800px;
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,9 @@
</select>
</div>
<div class="form-group">
<label for="created">Creation Date</label>
<input type="date" class="form-control" id="created" name="created">
<label for="created">Original Date</label>
<input type="date" class="form-control" id="originalDate" name="originalDate" value="{{caseInstitution}}">
{{-- <small id="keywords-help" class="form-text text-muted">Inform the date of case creation on Jacinto Moodle</small> --}}
</div>
<div class="form-group">
<label for="institution">Institution</label>
Expand All @@ -47,6 +48,7 @@
<textarea class="form-control" id="keywords" name="keywords" aria-describedby="keywords-help">{{caseKeywords}}</textarea>
<small id="keywords-help" class="form-text text-muted">Inform your keywords separated by semicolon.</small>
</div>

<input type="hidden" id="source" name="source">
<button type="submit" class="btn btn-secondary" id="btn-save-settings" data-toggle="modal" data-target="#settings-modal">Save</button>
<button type="button" class="btn btn-outline-secondary" data-dismiss="modal">Cancel</button>
Expand Down

0 comments on commit 7460986

Please sign in to comment.