summaryrefslogtreecommitdiff
path: root/gstudio/templates/gstudio/_nodetype_detail.html
diff options
context:
space:
mode:
authorgnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
committergnowgi <nagarjun@gnowledge.org>2012-03-15 16:19:20 +0530
commit7a4f561e851fdc7246d804c3abb6748b8a4199a6 (patch)
treed2afc3463fd49625a9be482012f5c3bfcf7c42b9 /gstudio/templates/gstudio/_nodetype_detail.html
downloadgnowsys-7a4f561e851fdc7246d804c3abb6748b8a4199a6.tar.gz
master trunk of gnowsys-studio
Diffstat (limited to 'gstudio/templates/gstudio/_nodetype_detail.html')
-rw-r--r--gstudio/templates/gstudio/_nodetype_detail.html32
1 files changed, 32 insertions, 0 deletions
diff --git a/gstudio/templates/gstudio/_nodetype_detail.html b/gstudio/templates/gstudio/_nodetype_detail.html
new file mode 100644
index 0000000..7f56f40
--- /dev/null
+++ b/gstudio/templates/gstudio/_nodetype_detail.html
@@ -0,0 +1,32 @@
+{% load tagging_tags comments i18n %}
+<div id="nodetype-{{ object.pk }}" class="hnodetype{% if object.featured %} featured{% endif %} span-16 last">
+ <div class="nodetype-header span-16 last">
+ <h2 class="nodetype-title">
+ <a href="{{ object.get_absolute_url }}" title="{{ object.title }}" rel="bookmark">
+ {{ object.title }}
+ </a>
+ <a href="{{ object.ref.get_edit_url }}" target="_blank" >[edit]</a>
+
+ </h2>
+
+ <p class="nodetype-info">
+
+
+ {% if object.authors.count %}
+ {% trans "Contributed by" %}
+ {% for author in object.authors.all %}
+ <span class="vcard author">
+ <a href="{% url gstudio_author_detail author %}" class="fn nickname url" rel="author"
+ title="{% blocktrans with author as author %}Show {{ author }} nodetypes{% endblocktrans %}">{{ author }}</a>
+ </span>{% if not forloop.last %}, {% endif %}
+ {% endfor %}
+ {% trans "on" %}
+ {% else %}
+ {% trans "Contributed by" %}
+ {% endif %}
+ <abbr class="published" title="{{ object.creation_date|date:"c" }}Z">{{ object.creation_date|date:"DATE_FORMAT" }}</abbr>
+
+
+
+</div>
+</div>