2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-07-17 18:26:32 +00:00
Files
.devcontainer
.devops
.github
.vscode
assets
contrib
docs
_includes
overrides
carousel.html
django.html
release_table.html
splide_image.html
ci
docs
generated
.gitignore
LICENSE
README.md
__init__.py
extract_schema.py
main.py
mkdocs.yml
mlc_config.json
requirements.in
requirements.txt
src
.git-blame-ignore-revs
.gitattributes
.gitignore
.pkgr.yml
.pre-commit-config.yaml
.python-version
CODE_OF_CONDUCT.md
CONTRIBUTING.md
LICENSE
Procfile
README.md
SECURITY.md
biome.json
codecov.yml
crowdin.yml
pyproject.toml
readthedocs.yml
requirements.txt
runtime.txt
tasks.py
InvenTree/docs/_includes/release_table.html
Oliver 6b08e45eac Docs refactor ()
* Refactor / reognaize docs structure

* Refactor plugin docs structure

* More refactoring / cleanup

* Update build images

* Gallery updates

* Order images

* Update part docs

* Settings images

* Stock images

* Reitntroduce gallery

* Add custom icon macro

* Update icons

* Cleanup

* Fix link

* Fix internal links

* Revert some page moves

* Fix links

* Fix links
2025-04-22 08:18:32 +10:00

41 lines
1.1 KiB
HTML

<div class='md-typeset__scrollwrap'>
<div class='md-typeset__table'>
<table>
<thead>
<tr>
<th>{{ icon("clipboard") }}</span> Release</th>
<th>{{ icon("calendar") }} Date</th>
<th>{{ icon("brand-github") }} GitHub</th>
<th>{{ icon("brand-docker") }} Docker</th>
</tr>
</thead>
<tbody>
{% for release in config.releases %}
<tr>
<td>
{% if release.local_path %}
<a href="../{{ release.tag_name }}">{{ release.tag_name }}</a>
{% else %}
{{ release.tag_name }}
{% endif %}
</td>
<td>{{ release.date }}</td>
<td>
<a href="https://github.com/inventree/InvenTree/releases/tag/{{ release.tag_name }}">{{ release.tag_name }}</a>
</td>
<td>
{% if release.docker %}
<a href="https://hub.docker.com/r/inventree/inventree/tags">inventree/inventree:{{ release.tag_name }}</a>
{% else %}
<em>Not available for this release</em>
{% endif %}
</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>
</div>