{% extends 'appearance/base.html' %} {% load i18n %} {% load static %} {% load appearance_tags %} {% load common_tags %} {% load navigation_tags %} {% block title %}{% trans 'About' %}{% endblock %} {% block content %} {% common_project_information '__build_string__' as project_build_number %} {% common_project_information '__copyright__' as project_copyright %} {% common_project_information '__description__' as project_description %} {% common_project_information '__license__' as license_information %} {% common_project_information '__title__' as project_title %} {% common_project_information '__version__' as project_version %} {% common_project_information '__website__' as project_website %} {% navigation_get_link 'mayan.apps.common.links.link_documentation' as link_documentation %} {% navigation_get_link 'mayan.apps.common.links.link_forum' as link_forum %} {% navigation_get_link 'mayan.apps.common.links.link_knowledge_base' as link_knowledge_base %} {% navigation_get_link 'mayan.apps.common.links.link_mailing_list' as link_mailing_list %} {% navigation_get_link 'mayan.apps.common.links.link_release_notes' as link_release_notes %} {% navigation_get_link 'mayan.apps.common.links.link_source_code' as link_source_code %} {% navigation_get_link 'mayan.apps.common.links.link_support' as link_support %}

{% trans 'Version' %} {{ project_version }}

{% if build_number %}

{% blocktrans with project_build_number as project_build_number %}Build number: {{ project_build_number }}{% endblocktrans %}

{% endif %}

{% trans project_description %}

{% trans 'Released under the license:' %} {% trans license_information %}

  • {% appearance_get_icon 'mayan.apps.common.icons.icon_mailing_list' %}
    {% blocktrans with link_mailing_list.url as link_mailing_list_url %} To get the latest news subscribe to the Mailing list. {% endblocktrans %}
  • {% appearance_get_icon 'mayan.apps.common.icons.icon_knowledge_base' %}
    {% blocktrans with link_knowledge_base.url as link_knowledge_base_url %} For articles, tutorials, troubleshooting, subscribe to the Knowledge base. {% endblocktrans %}
  • {% appearance_get_icon 'mayan.apps.common.icons.icon_support' %}
    {% blocktrans with link_support.url as link_support_url%} Need professional help? Check out the Support offerings. {% endblocktrans %}
  • {% appearance_get_icon 'mayan.apps.common.icons.icon_forum' %}
    {% blocktrans with link_forum.url as link_forum_url %} For discussions visit the Community forum. {% endblocktrans %}
  • {% appearance_get_icon 'mayan.apps.common.icons.icon_release_notes' %}
    {% blocktrans with link_release_notes.url as link_release_notes_url %} The complete list of changes is available via the Release notes. {% endblocktrans %}
  • {% appearance_get_icon 'mayan.apps.common.icons.icon_documentation' %}
    {% blocktrans with link_documentation.url as link_documentation_url %} For questions check the Documentation. {% endblocktrans %}
  • {% appearance_get_icon 'mayan.apps.common.icons.icon_source_code' %}
    {% blocktrans with link_source_code.url as link_source_code_url %} If you found a bug or have a feature idea open a ticket in the Source code repository. {% endblocktrans %}

{% blocktrans %} {{ project_title }} is Free and Open Source software, which is provided as-is with no warranty. {% endblocktrans %}

{{ project_copyright }}

{% endblock %}