File size: 1,816 Bytes
6d12932 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 | ---
---
<!-- get modelType -->
{% include fragment-modelType.html id='{{[id]}}' %}
{% include fragment-pagebegin.html %}
<div style="counter-reset: section 6" class="col-12">
<!--ReleaseHeader--><p id="publish-box">Publish Box goes here</p><!--EndReleaseHeader-->
{% include fragment-profile-navtabs.html type='{{[type]}}' id='{{[id]}}' active='testing' %}
<a name="root"> </a>
<h2 id="root">{{modelType}}: {{[title]}} - Testing</h2>
{% include fragment-simpletable.html %}
{% assign basepath = page.path | replace: '-testing.html', '.html' %}
<!-- insert intro if present -->
{% include fragment-intro.html type='{{[type]}}' id='{{[id]}}' %}
<h3>Test Plans</h3>
{% if site.data.pages[basepath].testplans.size > 0 %}
<table style="grid">
<tbody>
{% for testplan in site.data.pages[basepath].testplans %}
<tr>
<td>
<a href="{{testplan.url}}">{{testplan.title | escape_once}}</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p><b>No test plans are currently available for the {{id}} Profile.</b></p>
{% endif %}
<h3>Test Scripts</h3>
{% if site.data.pages[basepath].testscripts.size > 0 %}
<table style="grid">
<tbody>
{% for testscript in site.data.pages[basepath].testscripts %}
<tr>
<td>
<a href="{{testscript.url}}">{{testscript.title | escape_once}}</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% else %}
<p><b>No test scripts are currently available for the {{id}} Profile.</b></p>
{% endif %}
<!-- insert notes if present -->
{% include fragment-notes.html type='{{[type]}}' id='{{[id]}}' %}
</div>
{% assign includetabscripts = 'true' %}
{% include fragment-pageend.html %}
|