mirror of
https://github.com/Part-DB/Part-DB-server.git
synced 2025-06-20 17:15:51 +02:00
51 lines
No EOL
3.1 KiB
Twig
51 lines
No EOL
3.1 KiB
Twig
{% extends "base.html.twig" %}
|
|
|
|
{% block content %}
|
|
<div class="jumbotron">
|
|
<h1 class="display-3">{{ partdb_title }}</h1>
|
|
<h4>
|
|
{% trans %}version.caption{% endtrans %}: {{ shivas_app_version }}
|
|
{% if git_branch is not empty or git_commit is not empty %}
|
|
({{ git_branch ?? '' }}/{{ git_commit ?? '' }})
|
|
{% endif %}
|
|
</h4>
|
|
{% if banner is not empty %}
|
|
<hr>
|
|
<div class="latex">
|
|
<h5>{{ banner | markdown }}</h5>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<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">
|
|
<p>Part-DB, Copyright © 2019 - 2020 of <strong>
|
|
<a class="link-external" rel="noopener" target="_blank" href="https://github.com/jbtronics/">Jan Böhmer</a>
|
|
</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>.
|
|
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>
|
|
|
|
{% if datatable is not null %}
|
|
<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>
|
|
{% endif %}
|
|
{% endblock %} |