| author | ymh <ymh.work@gmail.com> |
| Mon, 27 Apr 2015 17:29:51 +0200 | |
| changeset 620 | f45d7494332e |
| parent 608 | d1eb7acb5b84 |
| child 627 | 3fd558fa38b1 |
| permissions | -rw-r--r-- |
| 288 | 1 |
{% extends "base.html" %} |
2 |
{% load static %} |
|
| 336 | 3 |
{% load i18n %} |
| 288 | 4 |
|
5 |
{% block title %}{{block.super}} > {{datasheet.title}}{% endblock %} |
|
6 |
||
7 |
{% block css_import %} |
|
8 |
{{block.super}} |
|
| 308 | 9 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/ui-lightness/jquery-ui-1.10.4.min.css' %}" /> |
| 311 | 10 |
<link rel="stylesheet" type="text/css" href="{% static 'renkanmanager/lib/renkan/css/renkan.css' %}" /> |
| 288 | 11 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/css/additionnal_renkan.css' %}" /> |
| 337 | 12 |
<link rel="stylesheet" type="text/css" href="{% static 'hdalab/lib/bjqs.css' %}" /> |
| 288 | 13 |
{% endblock %} |
14 |
||
15 |
{% block js_import %} |
|
16 |
{{block.super}} |
|
| 337 | 17 |
<script src="{% static 'hdalab/lib/bjqs-1.3.min.js' %}"></script> |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
18 |
<script src="{% static 'renkanmanager/lib/jquery-ui/jquery-ui.js' %}"></script> |
|
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
19 |
<script src="{% static 'renkanmanager/lib/jquery-mousewheel/jquery.mousewheel.js' %}"></script> |
|
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
20 |
<script src="{% static 'renkanmanager/lib/lodash/lodash.js' %}"></script> |
| 413 | 21 |
<script src="{% static 'renkanmanager/lib/backbone/backbone.js' %}"></script> |
22 |
<script src="{% static 'renkanmanager/lib/backbone-relational/backbone-relational.js' %}"></script> |
|
23 |
<script src="{% static 'renkanmanager/lib/paper/paper-full.js' %}"></script> |
|
| 288 | 24 |
<script type="text/javascript"> |
25 |
var require = { |
|
|
299
8e00641076e7
remove renkan management to an other django app (see renkan hg repo)
cavaliet
parents:
298
diff
changeset
|
26 |
baseUrl: "{% static 'renkanmanager/lib/' %}" |
| 288 | 27 |
}; |
28 |
</script> |
|
| 413 | 29 |
<script src="{% static 'renkanmanager/lib/requirejs/require.js' %}"></script> |
|
411
5e3f4a5f0900
Update ref to renkan.js + raise RENKANS_PER_PAGE from 3 to 8
rougeronj
parents:
409
diff
changeset
|
30 |
<script src="{% static 'renkanmanager/lib/renkan/js/renkan.js' %}"></script> |
|
323
67cff4e39ad8
search in notice json, and renkan search bin for notices.
cavaliet
parents:
311
diff
changeset
|
31 |
<script src="{% static 'hdalab/js/renkan-manual-save.js' %}"></script> |
|
67cff4e39ad8
search in notice json, and renkan search bin for notices.
cavaliet
parents:
311
diff
changeset
|
32 |
<script src="{% static 'hdalab/js/hdalab-renkan-bins.js' %}"></script> |
| 288 | 33 |
<script type="text/javascript"> |
|
440
4c4cfe573486
close 55 - On login, add user to project and set current user of renken to this new user
rougeronj
parents:
433
diff
changeset
|
34 |
var io_options = {}, dialog=false, _rkn; |
|
536
107a743740c1
extend Rkns.i18n.fr to change translation "search in bin"->"rechercher dans les resultats"
rougeronj
parents:
525
diff
changeset
|
35 |
_.extend(Rkns.i18n.fr, {"Search in Bins": "Rechercher dans les résultats"}); |
|
440
4c4cfe573486
close 55 - On login, add user to project and set current user of renken to this new user
rougeronj
parents:
433
diff
changeset
|
36 |
function startRenkan(){ |
| 288 | 37 |
var _renkan = new Rkns.Renkan({ |
| 308 | 38 |
manual_save: true, |
|
608
d1eb7acb5b84
correct small presentation problems
ymh <ymh.work@gmail.com>
parents:
590
diff
changeset
|
39 |
show_user_list: false, |
|
447
696958ea9ce7
Closes bug #62 : prevent image upload in renkan
ymh <ymh.work@gmail.com>
parents:
445
diff
changeset
|
40 |
user_color_editable: false, |
|
696958ea9ce7
Closes bug #62 : prevent image upload in renkan
ymh <ymh.work@gmail.com>
parents:
445
diff
changeset
|
41 |
user_name_editable: false, |
|
696958ea9ce7
Closes bug #62 : prevent image upload in renkan
ymh <ymh.work@gmail.com>
parents:
445
diff
changeset
|
42 |
show_user_color: false, |
| 482 | 43 |
show_export_button: false, |
|
525
f35e37814bff
remove "add egde" button and reduce title field to let place for "search in graph"
rougeronj
parents:
510
diff
changeset
|
44 |
show_addedge_button:false, |
|
299
8e00641076e7
remove renkan management to an other django app (see renkan hg repo)
cavaliet
parents:
298
diff
changeset
|
45 |
static_url : "{% static 'renkanmanager/lib/renkan/' %}", |
|
447
696958ea9ce7
Closes bug #62 : prevent image upload in renkan
ymh <ymh.work@gmail.com>
parents:
445
diff
changeset
|
46 |
allow_image_upload : false, |
|
590
117f1a721342
various corrections on save view and about text
ymh <ymh.work@gmail.com>
parents:
586
diff
changeset
|
47 |
default_view: false, |
|
117f1a721342
various corrections on save view and about text
ymh <ymh.work@gmail.com>
parents:
586
diff
changeset
|
48 |
save_view: true, |
| 288 | 49 |
search: [ |
50 |
{ |
|
| 324 | 51 |
type: "HdaTags", |
52 |
lang: "{{LANGUAGE_CODE}}", |
|
53 |
image: "http://dbpedia.org/statics/dbpedia_logo.png", |
|
54 |
url: "{% url 'tag_search' %}" |
|
55 |
}, |
|
56 |
{ |
|
|
323
67cff4e39ad8
search in notice json, and renkan search bin for notices.
cavaliet
parents:
311
diff
changeset
|
57 |
type: "HdaNotices", |
|
67cff4e39ad8
search in notice json, and renkan search bin for notices.
cavaliet
parents:
311
diff
changeset
|
58 |
lang: "{{LANGUAGE_CODE}}", |
|
67cff4e39ad8
search in notice json, and renkan search bin for notices.
cavaliet
parents:
311
diff
changeset
|
59 |
image: "http://digital-impulse.com/wp-content/plugins/smilies-themer/digicons/IronMan.png", |
|
67cff4e39ad8
search in notice json, and renkan search bin for notices.
cavaliet
parents:
311
diff
changeset
|
60 |
url: "{% url 'searchajax' %}" |
| 288 | 61 |
}, |
62 |
{ |
|
63 |
type: "Wikipedia", |
|
|
323
67cff4e39ad8
search in notice json, and renkan search bin for notices.
cavaliet
parents:
311
diff
changeset
|
64 |
lang: "{{LANGUAGE_CODE}}" |
| 288 | 65 |
} |
66 |
], |
|
67 |
bins: [ |
|
68 |
{ |
|
69 |
type: "ResourceList", |
|
|
445
a74ec9e02042
correct #35 + add tag abstract + improve translations
ymh <ymh.work@gmail.com>
parents:
440
diff
changeset
|
70 |
title: "{% trans 'Ressources' %}", |
| 288 | 71 |
list: [ |
|
445
a74ec9e02042
correct #35 + add tag abstract + improve translations
ymh <ymh.work@gmail.com>
parents:
440
diff
changeset
|
72 |
{ |
|
a74ec9e02042
correct #35 + add tag abstract + improve translations
ymh <ymh.work@gmail.com>
parents:
440
diff
changeset
|
73 |
url: "http://www.histoiredesarts.culture.fr/", |
|
a74ec9e02042
correct #35 + add tag abstract + improve translations
ymh <ymh.work@gmail.com>
parents:
440
diff
changeset
|
74 |
title: "Histoire des arts", |
|
a74ec9e02042
correct #35 + add tag abstract + improve translations
ymh <ymh.work@gmail.com>
parents:
440
diff
changeset
|
75 |
description: "Portail Histoire des arts sur culture.fr", |
|
a74ec9e02042
correct #35 + add tag abstract + improve translations
ymh <ymh.work@gmail.com>
parents:
440
diff
changeset
|
76 |
image: "http://www.culture.fr/extension/culture_fr/design/culture/images/favicon.ico" |
|
a74ec9e02042
correct #35 + add tag abstract + improve translations
ymh <ymh.work@gmail.com>
parents:
440
diff
changeset
|
77 |
} |
| 288 | 78 |
] |
79 |
} |
|
80 |
], |
|
81 |
/*property_files: [ "data/properties.json" ], |
|
82 |
node_fill_color: false*/ |
|
|
323
67cff4e39ad8
search in notice json, and renkan search bin for notices.
cavaliet
parents:
311
diff
changeset
|
83 |
language: "{{LANGUAGE_CODE}}" |
| 288 | 84 |
}); |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
85 |
|
|
412
436f3ec9d840
prevent from editing color (todo: hide color field) + pass user name to Renkan
rougeronj
parents:
411
diff
changeset
|
86 |
//_create_user_// |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
87 |
|
|
412
436f3ec9d840
prevent from editing color (todo: hide color field) + pass user name to Renkan
rougeronj
parents:
411
diff
changeset
|
88 |
//_____________// |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
89 |
io_options = { |
|
457
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
90 |
url: "{% url 'renkan_get_put' %}" + window.location.search, |
|
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
91 |
{% if user.is_authenticated %} |
|
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
92 |
user_authenticated: true, |
|
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
93 |
user_id:"{{ user.id }}", |
|
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
94 |
user_name:"{{ user }}", |
|
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
95 |
{% else %} |
|
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
96 |
user_authenticated: false, |
|
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
97 |
{% endif %} |
|
1121fd3d8b0e
user_id and user_name correctly passed through io_options
rougeronj
parents:
447
diff
changeset
|
98 |
}; |
| 308 | 99 |
Rkns.jsonIOSaveOnClick(_renkan, io_options); |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
100 |
|
|
440
4c4cfe573486
close 55 - On login, add user to project and set current user of renken to this new user
rougeronj
parents:
433
diff
changeset
|
101 |
_rkn = _renkan; |
| 308 | 102 |
}; |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
103 |
|
| 308 | 104 |
$(function() { |
105 |
var form; |
|
| 365 | 106 |
|
| 308 | 107 |
dialog = $( "#dialog-form" ).dialog({ |
108 |
autoOpen: false, |
|
| 385 | 109 |
width: 520, |
110 |
modal: true, |
|
111 |
create: function (event, ui) { |
|
112 |
$("#login-popup-close").click(function(){ |
|
113 |
dialog.dialog("close"); |
|
114 |
}); |
|
115 |
} |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
116 |
}); |
|
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
117 |
|
| 308 | 118 |
function manageLoginForm(e, form){ |
119 |
e.preventDefault(); |
|
120 |
f = $(form); |
|
121 |
$.ajax({ |
|
122 |
type: f.attr("method"), |
|
123 |
url: f.attr("action"), |
|
124 |
data: f.serialize(), |
|
125 |
success: function(data, textStatus, jqXHR) { |
|
| 310 | 126 |
var d = $(data); |
|
424
33a1260273bc
Close #55 - on Login success set username, add the user to project if not done yet
rougeronj
parents:
423
diff
changeset
|
127 |
if(d.hasClass("ok")){ |
|
33a1260273bc
Close #55 - on Login success set username, add the user to project if not done yet
rougeronj
parents:
423
diff
changeset
|
128 |
io_options.login_user = true; |
|
33a1260273bc
Close #55 - on Login success set username, add the user to project if not done yet
rougeronj
parents:
423
diff
changeset
|
129 |
io_options.user_id= d.attr("id"); |
|
33a1260273bc
Close #55 - on Login success set username, add the user to project if not done yet
rougeronj
parents:
423
diff
changeset
|
130 |
io_options.user_name= $("#username",d).html(); |
|
440
4c4cfe573486
close 55 - On login, add user to project and set current user of renken to this new user
rougeronj
parents:
433
diff
changeset
|
131 |
io_options.user_authenticated = true; |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
132 |
|
|
440
4c4cfe573486
close 55 - On login, add user to project and set current user of renken to this new user
rougeronj
parents:
433
diff
changeset
|
133 |
_rkn.setCurrentUser(io_options.user_id, io_options.user_name); |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
134 |
$("#menu.profile").html(d.html()); |
|
440
4c4cfe573486
close 55 - On login, add user to project and set current user of renken to this new user
rougeronj
parents:
433
diff
changeset
|
135 |
$(".Rk-Save-Button").click(); |
| 310 | 136 |
dialog.dialog( "close" ); |
137 |
return true; |
|
138 |
} |
|
| 308 | 139 |
$("#dialog-form").html(data); |
140 |
// in case, login failed, we reassign the behaviour |
|
141 |
form = dialog.find( "form" ).on( "submit", function( event ) { |
|
142 |
manageLoginForm(event, this); |
|
143 |
}); |
|
|
510
9f2c0fb8f7ad
Reassign "cancel" behaviour on cancel button of authentication popup
rougeronj
parents:
507
diff
changeset
|
144 |
$("#login-popup-close").click(function(){ |
|
9f2c0fb8f7ad
Reassign "cancel" behaviour on cancel button of authentication popup
rougeronj
parents:
507
diff
changeset
|
145 |
dialog.dialog("close"); |
|
9f2c0fb8f7ad
Reassign "cancel" behaviour on cancel button of authentication popup
rougeronj
parents:
507
diff
changeset
|
146 |
}); |
| 308 | 147 |
} |
148 |
}); |
|
149 |
} |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
150 |
|
| 365 | 151 |
form = dialog.find( "form" ).on( "submit", function( event ) { |
152 |
manageLoginForm(event, this); |
|
153 |
}); |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
154 |
|
| 365 | 155 |
//help dialog init |
156 |
var help_dialog = $( "#help-container" ).dialog({ |
|
157 |
autoOpen: false, |
|
158 |
height: 330, |
|
159 |
width: 880, |
|
160 |
resizable: false, |
|
161 |
draggable: false, |
|
162 |
create: function (event, ui) { |
|
163 |
var help_slideshow = $('#help-slideshow').bjqs({ |
|
164 |
responsive:false, |
|
165 |
height: 320, |
|
166 |
width: 870, |
|
167 |
animtype: 'slide', |
|
168 |
showcontrols: true, |
|
169 |
centercontrols: false, |
|
| 507 | 170 |
nexttext: "", |
171 |
prevtext: "", |
|
172 |
showmarkers : false, |
|
173 |
automatic: false |
|
| 365 | 174 |
}); |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
175 |
|
| 365 | 176 |
$("#toggle-help").click(function(){ |
|
371
c70c34166758
Shrink help icon + Prevent the icon to disappear (with the text "circular view") when renkan is modified
rougeronj
parents:
366
diff
changeset
|
177 |
if (help_dialog.dialog("isOpen")){ |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
178 |
help_dialog.dialog("close"); |
|
371
c70c34166758
Shrink help icon + Prevent the icon to disappear (with the text "circular view") when renkan is modified
rougeronj
parents:
366
diff
changeset
|
179 |
} |
|
c70c34166758
Shrink help icon + Prevent the icon to disappear (with the text "circular view") when renkan is modified
rougeronj
parents:
366
diff
changeset
|
180 |
else{ |
|
c70c34166758
Shrink help icon + Prevent the icon to disappear (with the text "circular view") when renkan is modified
rougeronj
parents:
366
diff
changeset
|
181 |
help_dialog.dialog("open"); |
|
c70c34166758
Shrink help icon + Prevent the icon to disappear (with the text "circular view") when renkan is modified
rougeronj
parents:
366
diff
changeset
|
182 |
} |
| 365 | 183 |
}); |
184 |
$(".img-close").click(function(){ |
|
185 |
help_dialog.dialog("close"); |
|
186 |
}); |
|
187 |
} |
|
188 |
}); |
|
189 |
}); |
|
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
190 |
|
| 288 | 191 |
</script> |
192 |
{% endblock %} |
|
193 |
||
194 |
{% block main_content %} |
|
|
407
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
195 |
<div class="all-title"> |
|
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
196 |
<h1><strong>RENKAN</strong></h1> |
|
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
197 |
<div class="renkan_help"> |
|
490
97afeb38e259
hide the switch-shape dropdown when its a saved renkan (id_rk is set)
rougeronj
parents:
482
diff
changeset
|
198 |
{% if switch_shape_url %} |
| 409 | 199 |
<ul> |
|
407
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
200 |
<li> |
| 433 | 201 |
{% trans 'Change organisation' %} |
| 409 | 202 |
<p> {% trans '(Indisponible si modification du RENKAN)' %}</p> |
|
407
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
203 |
<ul> |
| 420 | 204 |
{% if 'shape=vert' in switch_shape_url.current %} |
| 433 | 205 |
<li id="graph-line"><a href="">✓ {% trans 'View graph in column' %}</a></li> |
206 |
<li id="graph-lineH"><a href="{{ switch_shape_url.horiz }}"> {% trans 'View graph in line' %}</a></li> |
|
207 |
<li id="graph-circle"><a href="{{ switch_shape_url.circle }}"> {% trans 'View graph in circle' %}</a></li> |
|
| 420 | 208 |
{% elif 'shape=horiz' in switch_shape_url.current %} |
| 433 | 209 |
<li id="graph-line"><a href="{{ switch_shape_url.vert }}"> {% trans 'View graph in column' %}</a></li> |
210 |
<li id="graph-lineH"><a href="">✓ {% trans 'View graph in line' %}</a></li> |
|
211 |
<li id="graph-circle"><a href="{{ switch_shape_url.circle }}"> {% trans 'View graph in circle' %}</a></li> |
|
|
407
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
212 |
{% else %} |
| 433 | 213 |
<li id="graph-line"><a href="{{ switch_shape_url.vert }}"> {% trans 'View graph in column' %}</a></li> |
214 |
<li id="graph-lineH"><a href="{{ switch_shape_url.horiz }}"> {% trans 'View graph in line' %}</a></li> |
|
215 |
<li id="graph-circle"><a href="">✓ {% trans 'View graph in circle' %}</a></li> |
|
|
407
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
216 |
{% endif %} |
|
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
217 |
</ul> |
|
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
218 |
</li> |
|
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
219 |
</ul> |
|
490
97afeb38e259
hide the switch-shape dropdown when its a saved renkan (id_rk is set)
rougeronj
parents:
482
diff
changeset
|
220 |
{% endif %} |
|
407
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
221 |
<a id="toggle-help" href="#"></a> |
|
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
222 |
</div> |
|
3f64001a8e1f
Split css of help Popup in new file + add dropdown to choose circle or line shape
rougeronj
parents:
385
diff
changeset
|
223 |
</div> |
| 308 | 224 |
<div id="dialog-form" title="Identification"> |
225 |
{% include 'ajax_identification/ajax_login.html' %} |
|
226 |
</div> |
|
| 365 | 227 |
|
228 |
<div id="help-container" class=""> |
|
| 423 | 229 |
{% include 'help_popup.html' %} |
| 336 | 230 |
</div> |
| 365 | 231 |
|
| 288 | 232 |
<div class="rnk-wrapper"> |
233 |
<div class="rnk-container"> |
|
234 |
<div id="renkan"></div> |
|
235 |
</div> |
|
| 308 | 236 |
</div> |
|
620
f45d7494332e
upgrade renkan, correct tagcloud, migrate to lodash
ymh <ymh.work@gmail.com>
parents:
608
diff
changeset
|
237 |
{% endblock %} |