Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes column widths in various document templates #80

Merged
merged 2 commits into from
Feb 17, 2022
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
Expand Up @@ -8,6 +8,7 @@
- SDSS for GAMP3/4 - Missing Section 3.2.x tokens for replacement ([#67](https://github.com/opendevstack/ods-document-generation-templates/issues/67))
- CFTP for GAMP3/4/5 improvements ([#73](https://github.com/opendevstack/ods-document-generation-templates/pull/73))
- Add missing chapter numbers([#77](https://github.com/opendevstack/ods-document-generation-templates/pull/77))
- Fixes column widths in various document templates([#80](https://github.com/opendevstack/ods-document-generation-templates/pull/80))

## 1.2 - 2021-18-11

Expand Down
6 changes: 3 additions & 3 deletions templates/SSDS-1.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -280,14 +280,14 @@
<th>Version</th>
<th class="content-wrappable">Description of Functionality</th>
<th>References</th>
<th>Installed by ODS</th>
<th class="content-wrappable">Installed by ODS</th>
</tr>
{{#each data.sections.sec5s1.components}}
<tr>
<td class="lean">{{key}}</td>
<td class="content-wrappable">{{key}}</td>
<td class="content-wrappable">{{nameOfSoftware}}</td>
<td class="content-wrappable">{{supplier}}</td>
<td class="lean">{{version}}</td>
<td class="content-wrappable">{{version}}</td>
<td class="content-wrappable">{{description}}</td>
<td class="content-wrappable">{{references}}</td>
<td class="content-wrappable">{{doInstall}}</td>
Expand Down
6 changes: 3 additions & 3 deletions templates/SSDS-3.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -286,14 +286,14 @@
<th>Version</th>
<th class="content-wrappable">Description of Functionality</th>
<th>References</th>
<th>Installed by ODS</th>
<th class="content-wrappable">Installed by ODS</th>
</tr>
{{#each data.sections.sec5s1.components}}
<tr>
<td class="lean">{{key}}</td>
<td class="content-wrappable">{{key}}</td>
<td class="content-wrappable">{{nameOfSoftware}}</td>
<td class="content-wrappable">{{supplier}}</td>
<td class="lean">{{version}}</td>
<td class="content-wrappable">{{version}}</td>
<td class="content-wrappable">{{description}}</td>
<td class="content-wrappable">{{references}}</td>
<td class="content-wrappable">{{doInstall}}</td>
Expand Down
6 changes: 3 additions & 3 deletions templates/SSDS-4.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -285,14 +285,14 @@
<th>Version</th>
<th class="content-wrappable">Description of Functionality</th>
<th>References</th>
<th>Installed by ODS</th>
<th class="content-wrappable">Installed by ODS</th>
</tr>
{{#each data.sections.sec5s1.components}}
<tr>
<td class="lean">{{key}}</td>
<td class="content-wrappable">{{key}}</td>
<td class="content-wrappable">{{nameOfSoftware}}</td>
<td class="content-wrappable">{{supplier}}</td>
<td class="lean">{{version}}</td>
<td class="content-wrappable">{{version}}</td>
<td class="content-wrappable">{{description}}</td>
<td class="content-wrappable">{{references}}</td>
<td class="content-wrappable">{{doInstall}}</td>
Expand Down
6 changes: 3 additions & 3 deletions templates/SSDS-5.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -307,14 +307,14 @@
<th>Version</th>
<th class="content-wrappable">Description of Functionality</th>
<th>References</th>
<th>Installed by ODS</th>
<th class="content-wrappable">Installed by ODS</th>
</tr>
{{#each data.sections.sec5s1.components}}
<tr>
<td class="lean">{{key}}</td>
<td class="content-wrappable">{{key}}</td>
<td class="content-wrappable">{{nameOfSoftware}}</td>
<td class="content-wrappable">{{supplier}}</td>
<td class="lean">{{version}}</td>
<td class="content-wrappable">{{version}}</td>
<td class="content-wrappable">{{description}}</td>
<td class="content-wrappable">{{references}}</td>
<td class="content-wrappable">{{doInstall}}</td>
Expand Down
2 changes: 1 addition & 1 deletion templates/TIP.html.tmpl
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@
</tr>
{{#each data.repositories}}
<tr>
<td class="lean">{{id}}</td>
<td class="content-wrappable">{{id}}</td>
<td class="content-wrappable">{{metadata.supplier}}</td>
<td class="content-wrappable">{{data.git.url}} branch {{data.git.branch}}, the actual commit is specified as parameter during installation</td>
<td class="content-wrappable">BI-AS-ATLASSIAN / Project: {{metadata.name}} // repo: {{id}}</td>
Expand Down