<p class="book-box-tools book-box-tools-warn">
{% chunk "book-preview-warn" %}
</p>
-
- {% include "club/payment_info.html" %}
{% endblock %}
{% chunk 'club_form_bottom' %}
</form>
{% endwith %}
+
+ {% include "club/payment_info.html" %}
{% endif %}
+
</div>
{% endblock %}
from ajaxable.utils import AjaxableFormView
from club.forms import ScheduleForm
-from club.models import Membership
+from club.models import Club, Membership
from annoy.models import DynamicTextInsert
from pdcounter import views as pdcounter_views
from picture.models import Picture, PictureArea
'book_children': book.children.all().order_by('parent_number', 'sort_key'),
'active_menu_item': 'books',
'club_form': ScheduleForm() if book.preview else None,
+ 'club': Club.objects.first() if book.preview else None,
})