{{ value.title|capfirst }}
-
{% with value.links as object_navigation_links %}
{% with 'true' as as_li %}
- {% include "generic_navigation.html" %}
+ {% include 'generic_navigation.html' %}
{% endwith %}
{% endwith %}
{% project_name %}
@@ -11,7 +14,7 @@ {% block footer %} {% endblock %} diff --git a/mayan/apps/main/templates/project_description.html b/mayan/apps/main/templates/project_description.html index beefd73b9a..b36a1667e4 100644 --- a/mayan/apps/main/templates/project_description.html +++ b/mayan/apps/main/templates/project_description.html @@ -1,9 +1,10 @@ {% load i18n %} + - +- {% trans "Open source, Django based electronic document manager with custom metadata, indexing, tagging, file serving integration, digital signature support and OCR capabilities" %} + {% trans 'Open source, Django based electronic document manager with custom metadata, indexing, tagging, file serving integration, digital signature support and OCR capabilities' %}
http://www.mayan-edms.com @@ -18,7 +19,7 @@ https://github.com/mayan-edms/mayan-edms/issues
- {% trans "Released under the GPL V3 License" %} + {% trans 'Released under the GPL V3 License' %}
diff --git a/mayan/apps/main/templates/statistics.html b/mayan/apps/main/templates/statistics.html
index 325b394ccf..66d1d55f3e 100644
--- a/mayan/apps/main/templates/statistics.html
+++ b/mayan/apps/main/templates/statistics.html
@@ -1,11 +1,12 @@
-{% extends "base.html" %}
+{% extends 'base.html' %}
+
{% block title %} :: {{ title|capfirst }}{% endblock %}
{% block content %}
{% for block in blocks %}
{% with block.title as title %}
{% with block.paragraphs as paragraphs %}
- {% include "generic_subtemplate.html" %}
+ {% include 'generic_subtemplate.html' %}
{% endwith %}
{% endwith %}
{% endfor %}
diff --git a/mayan/apps/main/templates/tools.html b/mayan/apps/main/templates/tools.html
index 876fb77dcd..888cbdca87 100644
--- a/mayan/apps/main/templates/tools.html
+++ b/mayan/apps/main/templates/tools.html
@@ -1,22 +1,22 @@
-{% extends "base.html" %}
+{% extends 'base.html' %}
{% block title %} :: {{ title|capfirst }}{% endblock %}
{% block content %}
{% for key, value in blocks.items %}
- {{ value.title|capfirst }}
-
{% for link in value.links %}
- - {% include "generic_subnavigation.html" %}{% if link.description %} - {{ link.description }}{% endif %} + {% include 'generic_subnavigation.html' %}{% if link.description %} - {{ link.description }}{% endif %} {% endfor %}
{% trans "Version" %} {% app_version "main" %}
+{% trans 'Version' %} {% app_version 'mayan' %}
-Copyright © 2011, 2012 Roberto Rosario.
+{% trans 'Copyright © 2011 Roberto Rosario.' %}
-{% include "project_description.html" %} +{% include 'project_description.html' %}