Files
mayan-edms/mayan/apps/appearance/templates/appearance/about.html
2018-08-16 03:02:21 -04:00

125 lines
4.9 KiB
HTML

{% extends 'appearance/base.html' %}
{% load i18n %}
{% load static %}
{% load common_tags %}
{% load smart_settings_tags %}
{% block title %}{% trans 'About' %}{% endblock %}
{% block stylesheets %}
<style>
@font-face {
font-family: 'mayan-edms';
src: url("{% static 'appearance/fonts/mayan-edms.ttf' %}") format('truetype');
font-weight: normal;
font-style: normal;
}
[class^="icon-"], [class*=" icon-"] {
font-family: 'mayan-edms';
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
.icon-mayan-edms-logo:before {
content: "\e600";
font-size: 150%;
}
.mayan-edms-logo {
font-family: 'IM Fell English SC', serif;
font-size: 150%;
text-shadow: 5px 5px 1px rgba(0, 0, 0, 0.3);
}
@media (min-width: 768px) {
.mayan-edms-logo {
font-size: 300%;
}
}
@media (min-width: 991px) {
.mayan-edms-logo {
font-size: 500%;
}
}
</style>
{% endblock stylesheets %}
{% block content %}
{% build as build_number %}
{% smart_setting 'COMMON_PROJECT_TITLE' as setting_project_title %}
{% project_information '__title__' as project_title %}
<div class="well">
<h3 class="text-center">{{ setting_project_title }}</h3>
{% if project_title != setting_project_title %}
<br>
<p class="text-center">
{% blocktrans with setting_project_title as setting_project_title and project_title as project_title %}
{{ setting_project_title }} is based on {{ project_title }}
{% endblocktrans %}
</p>
{% endif %}
<p class="text-center">{% trans 'Version' %} {% project_information '__version__' %}</p>
{% if build_number %}
<p class='text-center'>{% blocktrans with build_number as build_number %}Build number: {{ build_number }}{% endblocktrans %}</p>
{% endif %}
<p class="text-center">
{% project_information '__description__' as project_description %}
{% trans project_description %}
</p>
<p class="text-center">
<i class="fa fa-home"></i><a href="{% project_information '__website__' %}"> {% project_information '__website__' %}</a>
</p>
<p class="text-center">
{% project_information '__license__' as license_information %}
{% trans 'Released under the license:' %} {% trans license_information %}
</p>
<p class="text-center mayan-edms-logo"><span class="icon-mayan-edms-logo"></span> {% project_information '__title__' %}</p>
<p class="text-center">
{% project_information '__title__' %} is a free and open-source software brought to you with <i class="fa fa-heart text-danger"></i> by Roberto Rosario and contributors.
</p>
<p class="text-center">
It takes great effort to make {% project_information '__title__' %} as feature-rich as it is. We need all the help we can get!
</p>
<p class="text-center">
If you use {% project_information '__title__' %} please <a class="new_window" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=3PXN336XFXQNN">consider making a donation <i class="fab fa-paypal"></i></a>
</p>
<p class="text-center">
If you found a bug or got a feature idea, visit the <a class="new_window" href="https://groups.google.com/forum/#!forum/mayan-edms">forum <i class="far fa-life-ring"></i></a> or open a ticket in the <a class="new_window" href="https://gitlab.com/mayan-edms/mayan-edms">GitLab repository <i class="fab fa-gitlab"></i></a>.
</p>
<p class="text-center">
Spread the word. Talk to your friends and colleagues about how awesome {% project_information '__title__' %} is!
Follow us on <a class="new_window" href="https://twitter.com/mayanedms">Twitter <i class="fab fa-twitter"></i></a> or <a class="new_window" href="https://www.facebook.com/MayanEDMS/">Facebook <i class="fab fa-facebook"></i></a>
</p>
</div>
{% endblock %}
{% block footer %}
<div id="row">
<div class="col-xs-12">
<div class="panel panel-default">
<div class="panel-body">
{% project_information '__copyright__' %}
</div>
</div>
</div>
</div>
{% endblock %}