From 3a6f1bb43f49c071ea86944022e65b83fed0ad5d Mon Sep 17 00:00:00 2001 From: Arun yadav Date: Mon, 30 Apr 2012 12:53:23 +0530 Subject: urls,views and templates for history added.Models modified for the same --- gstudio/templates/gstudio/version_base.html | 129 ++++++++++++++++++++++++++++ 1 file changed, 129 insertions(+) create mode 100644 gstudio/templates/gstudio/version_base.html (limited to 'gstudio/templates/gstudio/version_base.html') diff --git a/gstudio/templates/gstudio/version_base.html b/gstudio/templates/gstudio/version_base.html new file mode 100644 index 0000000..6972c9e --- /dev/null +++ b/gstudio/templates/gstudio/version_base.html @@ -0,0 +1,129 @@ +{% extends "gstudio/skeleton.html" %} +{% load gstudio_tags i18n %} +{% load objectapp_tags i18n %} + + {% block meta %} + +{% endblock %} + +{% block link %} + + + + + + +{% endblock %} + +{% block breadcrumbs %} + {% gstudio_breadcrumbs %} +{% endblock %} + +{% block sidebar %} + ? +

Rssfeed

+ + + +
+ + + + + + + + + + + + + + + + + + +
+

{% trans "Authors" %}

+ {% get_authors %} +
+
+

{% trans "Calendar" %}

+ {% get_calendar_gbobjects %} +
+
+

{% trans "Tags" %}

+ {% get_tag_cloud %} +
+
+

{% trans "Recent gbobjects" %}

+ {% get_recent_gbobjects 5 %} +
+
+

{% trans "Recent comments" %}

+ {% get_recent_comments 5 %} +
+
+

{% trans "Recent linkbacks" %}

+ {% get_recent_linkbacks 5 %} +
+
+

{% trans "Random gbobjects" %}

+ {% get_random_gbobjects 5 %} +
+
+

{% trans "Popular gbobjects" %}

+ {% get_popular_gbobjects 5 %} +
+
+

{% trans "Archives" %}

+ {% get_archives_gbobjects_tree %} +
+{% if user.is_authenticated %} +
+

{% trans "Tools" %}

+ +
+{% endif %} +{% endblock %} + + -- cgit v1.1