Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
# Changelog

## Unreleased
- Preformat all test data columns. ([#169](https://github.com/opendevstack/ods-document-generation-templates/pull/169))
- Fix Zephyr test data column formatting and layout. ([#168](https://github.com/opendevstack/ods-document-generation-templates/pull/168))

## 1.2.15 - 2026-08-17
Expand Down
9 changes: 7 additions & 2 deletions css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,13 @@ p {
pre {
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-all;
overflow: hidden;
}

pre.content-overflow {
white-space: pre-wrap;
word-wrap: break-word;
word-break: break-all;
overflow: auto;
}

table {
Expand Down
16 changes: 8 additions & 8 deletions templates/TCP.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -195,10 +195,10 @@
{{#each steps}}
<tr>
<td>{{orderId}}</td>
<td class="content-wrappable">{{{step}}}</td>
<td class="content-wrappable"><pre>{{{this.data}}}</pre></td>
<td class="content-wrappable">{{{result}}}</td>
<td class="content-wrappable">{{{actualResult}}}</td>
<td class="content-wrappable"><pre class="content-overflow">{{{step}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{this.data}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{result}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{actualResult}}}</pre></td>
</tr>
{{/each}} <!-- end test steps -->
</tbody>
Expand Down Expand Up @@ -263,10 +263,10 @@
{{#each steps}}
<tr>
<td>{{orderId}}</td>
<td class="content-wrappable">{{{step}}}</td>
<td class="content-wrappable"><pre>{{{this.data}}}</pre></td>
<td class="content-wrappable">{{{result}}}</td>
<td>{{{../actualResult}}}</td>
<td class="content-wrappable"><pre class="content-overflow">{{{step}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{this.data}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{result}}}</pre></td>
<td><pre class="content-overflow">{{{../actualResult}}}</pre></td>
</tr>
{{/each}} <!-- end test steps block -->
</tbody>
Expand Down
16 changes: 8 additions & 8 deletions templates/TCR.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -204,10 +204,10 @@
{{#each steps}}
<tr>
<td>{{orderId}}</td>
<td class="content-wrappable">{{{step}}}</td>
<td class="content-wrappable"><pre>{{{this.data}}}</pre></td>
<td class="content-wrappable">{{{result}}}</td>
<td class="content-wrappable">{{{../actualResult}}}</td>
<td class="content-wrappable"><pre class="content-overflow">{{{step}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{this.data}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{result}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{../actualResult}}}</pre></td>
</tr>
{{/each}} <!-- end test steps -->
</tbody>
Expand Down Expand Up @@ -272,10 +272,10 @@
{{#each steps}}
<tr>
<td>{{orderId}}</td>
<td class="content-wrappable">{{{step}}}</td>
<td class="content-wrappable"><pre>{{{this.data}}}</pre></td>
<td class="content-wrappable">{{{result}}}</td>
<td class="content-wrappable">{{{actualResult}}}</td>
<td class="content-wrappable"><pre class="content-overflow">{{{step}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{this.data}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{result}}}</pre></td>
<td class="content-wrappable"><pre class="content-overflow">{{{actualResult}}}</pre></td>
</tr>
{{/each}} <!-- end test steps block -->
</tbody>
Expand Down
Loading