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

layout_br_base doesn't wrap long lines #267

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -105,63 +105,25 @@
</table>

<t t-if="o.business_requirement">
<h3>Customer Story:</h3>
<table class="table table-bordered">
<tbody>
<tr>
<td>
<pre style="padding-left: 30px;">
<span t-field="o.business_requirement"/>
</pre>
</td>
</tr>
</tbody>
</table>
<h3 style="width: 210mm; word-wrap: break-word;">Customer Story:</h3>
<span t-field="o.business_requirement"
style="padding-left: 30px; width: 210mm; word-wrap: break-word; height: 100%;"/>
</t>

<t t-if="o.scenario">
<h3>Scenario:</h3>
<table class="table .table-striped">
<tbody>
<tr>
<td>
<pre style="padding-left: 30px;">
<span t-field="o.scenario"/>
</pre>
</td>
</tr>
</tbody>
</table>
<h3 style="width: 210mm; word-wrap: break-word;">Scenario:</h3>
<span t-field="o.scenario"
style="padding-left: 30px; width: 210mm; word-wrap: break-word; height: 100%;"/>
</t>

<t t-if="o.gap">
<h3>Gap:</h3>
<table class="table table-bordered">
<tbody>
<tr>
<td>
<pre style="padding-left: 30px;">
<span t-field="o.gap"/>
</pre>
</td>
</tr>
</tbody>
</table>
<h3 style="width: 210mm; word-wrap: break-word;">Gap:</h3>
<span t-field="o.gap" style="width: 210mm; word-wrap: break-word; height: 100%;"/>
</t>

<t t-if="o.test_case">
<h3>Test Case:</h3>
<table class="table table-bordered">
<tbody>
<tr>
<td>
<pre style="padding-left: 30px;">
<t t-raw="o.test_case"/>
</pre>
</td>
</tr>
</tbody>
</table>
<h3 style="width: 210mm; word-wrap: break-word;">Test Case:</h3>
<span t-field="o.test_case" style="width: 210mm; word-wrap: break-word; height: 100%;"/>
</t>
</template>

Expand Down