2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-19 21:45:39 +00:00

website info for plugins

This commit is contained in:
Matthias
2021-10-06 10:54:57 +02:00
parent f1fd1d4da8
commit eeeb69ce12
4 changed files with 24 additions and 0 deletions

View File

@ -40,6 +40,10 @@
</a>
{% endfor %}
{% endif %}
{% if plugin.website %}
<a href="{{ plugin.website }}"><i class="fas fa-globe"></i></a>
{% endif %}
</td>
<td>{{ plugin.author }}</td>
<td>{{ plugin.pub_date }}</td>

View File

@ -37,6 +37,13 @@
<td>{% trans "Version" %}</td>
<td>{{ plugin.version }}{% include "clip.html" %}</td>
</tr>
{% if plugin.website %}
<tr>
<td><span class='fas fa-globe'></span></td>
<td>{% trans "Website" %}</td>
<td>{{ plugin.website }}{% include "clip.html" %}</td>
</tr>
{% endif %}
</table>
<p>{% trans 'The code information is pulled from the latest git commit for this plugin. It might not reflect official version numbers or information but the actual code running.' %}</p>