summaryrefslogtreecommitdiff
path: root/objectapp/templates/objectapp/_gbobject_detail.html
blob: 2680c8a317076c74215862fd59675d07ed58c6d7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
{% load tagging_tags comments i18n %}
<div id="gbobject-{{ object.pk }}" class="hgbobject{% if object.featured %} featured{% endif %} span-16 last">
  <div class="gbobject-header span-16 last">
    <h2 class="gbobject-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>
		
     
           <table border="1" cellspacing="0">
	
        {% for sid in object.ref.get_ssid  %}
	   
	      
	     <a href="/objects/display/viewhistory/{{ sid }}/{{ forloop.counter }}" title= "{{ object.title }} {{ object.id }}.{{ forloop.counter }}" style="color:#FFA500"><b>+</b></a> &nbsp;
	 
        {% endfor %}
	   </table>
	
    <p class="gbobject-info">
      {% if object.authors.count %}
      {% trans "Written by" %}
      {% for author in object.authors.all %}
      <span class="vcard author">
        <a href="{% url objectapp_author_detail author %}" class="fn nickname url" rel="author"
           title="{% blocktrans with author as author %}Show {{ author }} gbobjects{% endblocktrans %}">{{ author }}</a>
      </span>{% if not forloop.last %}, {% endif %}
      {% endfor %}
      {% trans "on" %}
      {% else %}
      {% trans "Written on" %}
      {% endif %}
      <abbr class="published" title="{{ object.creation_date|date:"c" }}Z">{{ object.creation_date|date:"DATE_FORMAT" }}</abbr>
      {% if object.objecttypes.count %}
      {% trans "in" %}
      {% for Objecttype in object.objecttypes.all %}
      <a href="{{ Objecttype.get_absolute_url }}" title="{{ Objecttype }}" rel="tag Objecttype">{{ Objecttype }}</a>{% if not forloop.last %}, {% endif %}{% endfor %}{% endif %}.
    </p>

</div>


<p>
             <b>Name: </b> {{ object.title }} <br/>
	

               {% if object.get_rendered_nbh.plural %}
                                <b> Plural Name :<nbsp></b>
                                         {{object.get_rendered_nbh.plural}} <br/>
                           {% endif %}
                            {% if object.get_rendered_nbh.altnames %}
                               <b> Alternate names :<nbsp></b>
                                         {{object.get_rendered_nbh.altnames}} <br/>
{% endif %}
              
              {% if object.get_rendered_nbh.member_of %}
                           
                          
                                <b> Member of :<nbsp></b>

                                    {% for mkey,mvalue in object.get_rendered_nbh.member_of.items %}
                                        <a href="{{mvalue}}">{{mkey}}</a>;
                                    {% endfor %}<br/>
                           {% endif %}
			{% if object.content %}
                            <b>
					Content:<nbsp>
				
				          <input type="button" id="editdata" value="Edit Content"/><ndsp><nbsp> 
					  <input type="hidden" id="objectid" value="{{object.id}}"/>
		                          
					  <input type="hidden" id="title" value="{{object.title}}"/>
					  <input type="hidden" id="orgcontent" value="{{object.content_org}}"/>
					
					  
					</b>
				   	{{object_content}}<br/>

					{% else %}
						<b>
					Content:<nbsp> <input type="button"id="editdata"value="Edit Content"/><ndsp><nbsp>
					  
					  <input type="hidden" id="objectid" value="{{object.id}}"/>
		
					  <input type="hidden" id="title" value="{{object.title}}"/>
					  <input type="hidden" id="orgcontent" value="{{object.content_org}}"/>
					
					  </b>
				   	{{object_content}}<br/>
					
                          {% endif %}
		

              {% if object.get_rendered_nbh.relations %}
                         
                         
                                 {% for relkey,relvalue in object.get_rendered_nbh.relations.items %}
                                          <b>{{relkey}}:<nbsp></b>
{% for relk, relv in relvalue.items %}
<a href="{{relv}}">{{relk}}</a>;
                                        {% endfor %}<br/>
{% endfor %}
{% endif %}
                           
                           {% if object.get_rendered_nbh.attributes %}
			   {% for atkey,atvalue in object.get_rendered_nbh.attributes.items %}
                                 {% if atvalue %}
			    <b>     {{atkey}}:<nbsp></b>
                                    
				    {% for items in atvalue %}
					{{items}};<nbsp>
                                    {% endfor %}
                                 {% endif %}<br/>
			{% endfor %}                         
			{% endif %}

</p>

</div>
  

  <div class="gbobject-body span-16 last">
    {% if object.image %}
    <div class="gbobject-image">
      <p>
        <a href="{{ object.get_absolute_url }}" rel="bookmark">
<img src="{{ object.image.url }}" alt="{{ object.title }}" class="left" />
        </a>
      </p>
    </div>
    {% endif %}
    <div class="gbobject-content">
     <!-- {{ object_content }}-->
    </div>
  </div>

  <div class="gbobject-footer">
    <p class="gbobject-tags span-16 last">
      <strong>{% trans "Tags" %}</strong> :
      {% tags_for_object object as tag_list %}
      {% for tag in tag_list %}
      <a href="{% url objectapp_tag_detail tag %}"
         title="Tag {{ tag }}" rel="tag">{{ tag }}</a>
      {% empty %}
      <span>{% trans "No tags" %}</span>
      {% endfor %}
    </p>

    <p class="gbobject-shorturl span-16 last">
      <strong>{% trans "Short url" %}</strong> :
      <a href="{{ object.short_url }}" title="{{ object.title }}" rel="shortlink">
        {{ object.short_url }}
      </a>
    </p>

    <p class="gbobject-comments span-16 last">
      <strong>{% trans "Discussions" %}</strong> :
      {% with object.comments.count as comment_count %}
      {% if comment_count %}
      <a href="{{ object.get_absolute_url }}#comments" title="{{ object.title }}">
        {% blocktrans count comment_count as comment_count %}{{ comment_count }} comment{% plural %}{{ comment_count }} comments{% endblocktrans %}
      </a>
      {% else %}
      {% if object.comments_are_open %}
      {% trans "No comments yet." %}
      <a href="{{ object.get_absolute_url }}#comments" title="{{ object.title }}">
        {% trans "Be first to comment!" %}
      </a>
      {% else %}
      {% trans "Comments are closed." %}
      {% endif %}
      {% endif %}
      {% endwith %}
      {% with object.pingbacks.count as pingback_count %}
      {% if pingback_count %}
       <a href="{{ object.get_absolute_url }}#pingbacks" title="{{ object.title }}">
        {% blocktrans count pingback_count as pingback_count %}{{ pingback_count }} pingback{% plural %}{{ pingback_count }} pingbacks{% endblocktrans %}
      </a>
      {% endif %}
      {% endwith %}
      {% with object.trackbacks.count as trackback_count %}
      {% if trackback_count %}
       <a href="{{ object.get_absolute_url }}#trackbacks" title="{{ object.title }}">
        {% blocktrans count trackback_count as trackback_count %}{{ trackback_count }} trackback{% plural %}{{ trackback_count }} trackbacks{% endblocktrans %}
      </a>
      {% endif %}
      {% endwith %}
    </p>
  </div>