2019-03-12 13:34:33 +01:00
{% extends "base.html.twig" %}
{% block content %}
<div class="jumbotron">
<h1 class="display-3"> {{ partdb_title }} </h1>
<h4>
{% trans %} version.caption {% endtrans %} : {{ shivas_app_version }}
2019-10-13 00:44:50 +02:00
{% if git_branch is not empty or git_commit is not empty %}
( {{ git_branch ? ? '' }} / {{ git_commit ? ? '' }} )
{% endif %}
2019-03-12 13:34:33 +01:00
</h4>
{% if banner is not empty %}
2019-03-12 18:06:56 +01:00
<hr>
2020-03-15 15:48:01 +01:00
<div class="latex">
2019-10-13 00:34:33 +02:00
<h5> {{ banner | markdown }} </h5>
2019-03-12 18:06:56 +01:00
</div>
2019-03-12 13:34:33 +01:00
{% endif %}
</div>
2019-03-12 18:06:56 +01:00
<div class="card border-primary mt-3">
<div class="card-header bg-primary text-white">
<h4><i class="fa fa-book fa-fw" aria-hidden="true"></i> {% trans %} homepage.license {% endtrans %} </h4>
</div>
<div class="card-body">
2020-01-04 22:15:49 +01:00
<p>Part-DB, Copyright © 2019 - 2020 of <strong>
2019-03-12 18:06:56 +01:00
<a class="link-external" rel="noopener" target="_blank" href="https://github.com/jbtronics/">Jan Böhmer</a>
2020-02-22 18:14:36 +01:00
</strong>. <br> Part-DB is published under the <strong>GNU Affero General Public License v3.0 (or later)</strong>, so it comes with <strong>ABSOLUTELY NO WARRANTY</strong>.
2019-03-12 18:06:56 +01:00
This is free software, and you are welcome to redistribute it under certain conditions.
Click <a href="https://raw.githubusercontent.com/Part-DB/Part-DB-symfony/master/LICENSE" class="link-external" rel="noopener" target="_blank">here</a> for details.<br>
</p>
<strong><i class="fab fa-github fa-fw"></i> {% trans %} homepage.github.caption {% endtrans %} :</strong> {% trans with { '%href%' : 'https://github.com/Part-DB/Part-DB-symfony' } %} homepage.github.text {% endtrans %} <br>
<strong><i class="fas fa-question fa-fw"></i> {% trans %} homepage.help.caption {% endtrans %} :</strong> {% trans with { '%href%' : 'https://github.com/Part-DB/Part-DB/wiki' } %} homepage.help.text {% endtrans %} <br>
<strong><i class="fas fa-comments fa-fw"></i> {% trans %} homepage.forum.caption {% endtrans %} :</strong> {% trans with { '%href%' : 'https://www.mikrocontroller.net/topic/461256' } %} homepage.forum.text {% endtrans %} <br>
<strong><i class="fas fa-info fa-fw"></i> {% trans %} homepage.wiki.caption {% endtrans %} :</strong> {% trans with { '%href%' : 'https://www.mikrocontroller.net/articles/Part-DB_RW_-_Lagerverwaltung' } %} homepage.wiki.text {% endtrans %} <br>
<br>
{% trans %} homepage.basedOn {% endtrans %}
<a class="link-external" rel="noopener" target="_blank" href="http://www.cl-projects.de/"><strong>Christoph Lechner</strong></a>,
<a class="link-external" rel="noopener" target="_blank" href="http://www.grautier.com/"><strong>K. Jacobs</strong></a>
{% trans %} homepage.others {% endtrans %}
</div>
</div>
2020-03-07 17:15:16 +01:00
2020-03-07 20:49:52 +01:00
{% if datatable is not null %}
2020-03-07 17:15:16 +01:00
<div class="card mt-3">
<div class="card-header"><i class="fas fa-fw fa-history"></i> {% trans %} homepage.last_activity {% endtrans %} </div>
<div class="card-body">
{% include "LogSystem/_log_table.html.twig" %}
</div>
</div>
2020-03-07 20:49:52 +01:00
{% endif %}
2019-03-12 13:34:33 +01:00
{% endblock %}