2013年8月21日水曜日

[jQuery] 無限スクロールを試す

JSONレスポンスが使える無限スクロールPluginを探していたら、 14 Best Free jQuery Infinite Scrolling Plugins Examples and Tutorialsというサイトが見つかった。 ここで紹介されているPluginの中で、 Autobrowse jQuery を試して見たところ、期待どおりJSONレスポンスを使った無限スクロールが実現。

2013年8月11日日曜日

[Django 1.5.1] CreateViewのtemplate_name_suffix

ファイルアップロード時の動作を改善しようとdjango-jquery-file-uploadのコードを読んでいたところ、なぜか、使用するテンプレートの指定がどこにも書かれていない。 調べたところ、CreateViewはテンプレートの指定がない場合、モデル名に'_form'を付けたファイルを使うようになっている。
class CreateView(SingleObjectTemplateResponseMixin, BaseCreateView):
    """
    View for creating a new object instance,
    with a response rendered by template.
    """
    template_name_suffix = '_form'
...
例えば下記のような場合、picture_form.htmlを探します。
class PictureCreateView(CreateView):
    model = Picture