(function($) {
$(function() {
+
$('form input').labelify({labelledClass: 'blur'});
target = $('#login-register-window div.target');
target.html('<p><img src="/static/img/indicator.gif" />'+LOCALE_TEXTS[LANGUAGE_CODE]['DELETE_SHELF']+'</p>');
hash.w.css({position: 'absolute', left: offset.left, top: offset.top}).show() },
onLoad: function(hash) {
+ try {
+ $('#createShelfTrigger').click(function(){
+ $('#createNewShelf').show();
+ });
+ } catch (e){}
+
$('form', hash.w).ajaxForm({
target: target,
- success: function() { setTimeout(function() { $('#set-window').jqmHide() }, 1000) }
+ success: function() {
+ setTimeout(function() {
+ $('#set-window').jqmHide();
+ }, 1000)}
});
}
});
{% load i18n %}
<h2>{% trans "Put a book on the shelf!" %}</h2>
+<a href="#" id="createShelfTrigger">{% trans "Create new shelf" %}</a>
+<form id="createNewShelf" action="{% url catalogue.views.new_set %}" method="POST" accept-charset="utf-8" class="cuteform">
+<ol>
+ <li>{{ new_set_form.name }} <input type="submit" value="{% trans "Create new shelf" %}"/></li>
+</ol>
+</form>
{% if not user.tag_set.count %}
<p>{% trans "You do not have any shelves. You can create one below, if you want to."%}</p>
{% else %}
</ol>
</form>
{% endif %}
-<hr />
-<form action="{% url catalogue.views.new_set %}" method="POST" accept-charset="utf-8" class="cuteform">
-<ol>
- <li>{{ new_set_form.name }} <input type="submit" value="{% trans "Create new shelf" %}"/></li>
-</ol>
-</form>
\ No newline at end of file