Multi-platform: support multiple files per version #201
@ -1,10 +1,16 @@
|
||||
{% load i18n %}
|
||||
|
||||
{% if version.platforms.all %}
|
||||
<div>
|
||||
Supported platforms:
|
||||
<ul>
|
||||
{% for p in version.platforms.all %}
|
||||
<li>{{p.name}}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
<div class="dl-row">
|
||||
<div class="dl-col">
|
||||
<dt>{% trans "Supported Platforms" %}</dt>
|
||||
<dd>
|
||||
<ul class="mb-0">
|
||||
{% for p in version.platforms.all %}
|
||||
<li>{{p.name}}</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</dd>
|
||||
</div>
|
||||
</div>
|
||||
{% endif %}
|
||||
|
@ -202,11 +202,12 @@
|
||||
<dt>{% trans 'Compatibility' %}</dt>
|
||||
<dd>
|
||||
{% include "extensions/components/blender_version.html" with version=latest %}
|
||||
{% include "extensions/components/platforms.html" with version=latest %}
|
||||
</dd>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% include "extensions/components/platforms.html" with version=latest %}
|
||||
|
||||
{% if extension.website %}
|
||||
<div class="dl-row">
|
||||
<div class="dl-col">
|
||||
|
@ -64,10 +64,12 @@
|
||||
<dt>{% trans 'Compatibility' %}</dt>
|
||||
<dd>
|
||||
{% include "extensions/components/blender_version.html" with version=version %}
|
||||
{% include "extensions/components/platforms.html" with version=version %}
|
||||
</dd>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
{% include "extensions/components/platforms.html" with version=version %}
|
||||
|
||||
<div class="dl-row">
|
||||
<div class="dl-col">
|
||||
<dt>Downloads</dt>
|
||||
|
Loading…
Reference in New Issue
Block a user