knarfel

Results 2 issues of knarfel

Hi, The example for this framework is obselete. Since server-side MaxMessageSize = 16 * 1024, it would be good idea to modify client to have default value on his parameter...

bug

Example : In view: ```python context = { 'bills' : bill.objects.all() } ``` models: ```python class Bill(models.Model): signature_name = models.CharField(max_length=255, blank=True) signature = JSignatureField(blank =True) ``` template : ```html+django {{...