Skip to content

Commit

Permalink
Merge 2b6928a into 61ede13
Browse files Browse the repository at this point in the history
  • Loading branch information
asankov committed May 29, 2020
2 parents 61ede13 + 2b6928a commit ce9a009
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 2 additions & 0 deletions tcms/testruns/static/testruns/js/get.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,8 @@ function renderAdditionalInformation(testExecutions, testExecutionCaseIds) {
const listGroupItem = $(`.test-execution-${testExecution.id}`)
listGroupItem.find('.test-execution-priority').html(testCase.priority)
listGroupItem.find('.test-execution-category').html(testCase.category)
listGroupItem.find('.test-execution-text').html(testCase.text)
listGroupItem.find('.test-execution-notes').append(testCase.notes)

const isAutomatedElement = listGroupItem.find('.test-execution-automated')
const isAutomatedIcon = testCase.is_automated ? 'fa-cog' : 'fa-thumbs-up'
Expand Down
14 changes: 13 additions & 1 deletion tcms/testruns/templates/testruns/get.html
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,19 @@ <h2 class="card-pf-title">
</div>
</div>
<div class="list-group-item-container container-fluid hidden">
{% comment %} TODO: exandable content goes here {% endcomment %}
<div class="row">
<div class="col-md-9">
<div class="test-execution-text-container markdown-text">
<p class="test-execution-text"></p>
<p class="test-execution-notes">
<strong>{% trans 'Notes' %}:</strong>
</p>
<div>
{% comment %} TODO: bugs come here {% endcomment %}
</div>
</div>
</div>
</div>
</div>
</div>
</template>
Expand Down

0 comments on commit ce9a009

Please sign in to comment.