-
Notifications
You must be signed in to change notification settings - Fork 104
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1165 from Fryguy/poc
Add note about which download types are non-production/PoC
- Loading branch information
Showing
3 changed files
with
29 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,30 @@ | ||
{% assign release = include.release %} | ||
<div class="table-responsive"> | ||
<table class="table table-bordered table-hover"> | ||
<tr> | ||
<th>Appliance</th> | ||
<th>Format</th> | ||
<th>Size</th> | ||
<th>MD5</th> | ||
</tr> | ||
{% for type in site.data.download_types %} | ||
{% assign data = type.download_platform | data_for: release.branch, release.tag, release.filename, type.ext %} | ||
{% assign url = data[0] %} | ||
{% assign file_size = data[1]["size"] %} | ||
{% assign md5 = data[1]["md5"] %} | ||
<tbody> | ||
<tr> | ||
<td><a href="{{ url }}" onClick="{{ type.download_platform | on_click_for_download: type.name, release.name }}">{{ type.name }}</a></td> | ||
<td>{{ type.download_platform }}</td> | ||
<td>{{ file_size }}</td> | ||
<td>{{ md5 }}</td> | ||
<th>Appliance</th> | ||
<th>Format</th> | ||
<th>Size</th> | ||
<th>MD5</th> | ||
</tr> | ||
{% endfor %} | ||
{% for type in site.data.download_types %} | ||
{% assign data = type.download_platform | data_for: release.branch, release.tag, release.filename, type.ext %} | ||
{% assign url = data[0] %} | ||
{% assign file_size = data[1]["size"] %} | ||
{% assign md5 = data[1]["md5"] %} | ||
<tr> | ||
<td><a href="{{ url }}" onClick="{{ type.download_platform | on_click_for_download: type.name, release.name }}">{{ type.name }}</a>{% if type.poc %} *{% endif %}</td> | ||
<td>{{ type.download_platform }}</td> | ||
<td>{{ file_size }}</td> | ||
<td>{{ md5 }}</td> | ||
</tr> | ||
{% endfor %} | ||
</tbody> | ||
<tfoot> | ||
<tr> | ||
<td colspan="4">* Intended for proof of concept and non-production use cases.</td> | ||
</tr> | ||
</tfoot> | ||
</table> | ||
</div> |