Richard Knop

Results 4 issues of Richard Knop

I have added a new optional template argument. So you can specify a different template for pagination rendering. For example: ``` p = Paginator(queryset, 40, request=request) paginated = p.page(page, template='pure_pagination/twitter_bootstrap.html')...

This PR adds a test to verify you can set foreign key to NULL using a named statement. I was suspicious that there was a bug in the library for...

could merge

Marshalling a schema with `contains` keyword will currently always output: ``` { "contains": {} } ``` Ignoring entire schema inside contains. This PR fixes the behaviour so marshalling works as...

When I unmarshall a schema with `contains` keyword into instance of `*jsonschema.Schema`, for example: ```json { "contains": { "const": "foobar" }, "type": "array" } ``` And then marshall the schema...