2019-05-04 01:23:30 +00:00
|
|
|
{% load static %}
|
|
|
|
{% load inventree_extras %}
|
2020-02-02 01:39:35 +00:00
|
|
|
{% load i18n %}
|
2019-05-04 01:23:30 +00:00
|
|
|
|
|
|
|
<div class='modal fade modal-fixed-footer' tabindex='-1' role='dialog' id='modal-about'>
|
|
|
|
<div class='modal-dialog'>
|
|
|
|
<div class='modal-content'>
|
|
|
|
<div class="modal-header">
|
|
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Close">
|
|
|
|
<span aria-hidden="true">×</span>
|
|
|
|
</button>
|
|
|
|
<img src="{% static 'img/inventree.png' %}" height='60' style='float: left;' alt='Inventree Logo'>
|
2020-04-06 10:11:36 +00:00
|
|
|
<h3>{% trans "InvenTree Version Information" %}</h3>
|
2019-05-04 01:23:30 +00:00
|
|
|
</div>
|
2021-02-21 14:10:11 +00:00
|
|
|
<div class='modal-form-content-wrapper'>
|
|
|
|
<div class='modal-form-content'>
|
|
|
|
<div>
|
|
|
|
<table class='table table-striped table-condensed'>
|
|
|
|
<col width='25'>
|
|
|
|
<tr>
|
|
|
|
<td><span class='fas fa-hashtag'></span></td>
|
|
|
|
<td>{% trans "InvenTree Version" %}</td><td><a href="https://github.com/inventree/InvenTree/releases">{% inventree_version %}</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class='fas fa-hashtag'></span></td>
|
|
|
|
<td>{% trans "Django Version" %}</td><td><a href="https://www.djangoproject.com/">{% django_version %}</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class='fas fa-code-branch'></span></td>
|
|
|
|
<td>{% trans "Commit Hash" %}</td><td><a href="https://github.com/inventree/InvenTree/commit/{% inventree_commit_hash %}">{% inventree_commit_hash %}</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class='fas fa-calendar-alt'></span></td>
|
|
|
|
<td>{% trans "Commit Date" %}</td><td>{% inventree_commit_date %}</td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class='fas fa-book'></span></td>
|
|
|
|
<td>{% trans "InvenTree Documentation" %}</td>
|
|
|
|
<td><a href="{% inventree_docs_url %}">{% inventree_docs_url %}</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class='fab fa-github'></span></td>
|
|
|
|
<td>{% trans "View Code on GitHub" %}</td>
|
|
|
|
<td><a href="{% inventree_github_url %}">{% inventree_github_url %}</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class='fas fa-mobile-alt'></span></td>
|
|
|
|
<td>{% trans "Get the App" %}</td>
|
|
|
|
<td><a href="https://inventree.readthedocs.io/en/latest/app/app">https://inventree.readthedocs.io/en/latest/app/app</a></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
|
|
<td><span class='fas fa-bug'></span></td>
|
|
|
|
<td>{% trans "Submit Bug Report" %}</td>
|
|
|
|
<td><a href='{% inventree_github_url %}/issues'>{% inventree_github_url %}issues</a></td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
2019-05-04 01:23:30 +00:00
|
|
|
|
2021-02-21 14:10:11 +00:00
|
|
|
</div>
|
2019-05-04 01:23:30 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class='modal-footer'>
|
|
|
|
<button type='button' class='btn btn-default' data-dismiss='modal'>Close</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|