Neven Munđar
Results
2
issues of
Neven Munđar
django supports this syntax for url tag: ``` django {% url 'path.to.view' arg arg2 as the_url %} I'm linking to {{ the_url }} ``` https://docs.djangoproject.com/en/dev/ref/templates/builtins/#url But if i try to...
Maybe it would be clearer and cleaner if field name parameter is not named 'field' in schema.add_field usage example: ``` python class MyModel(DynamicModel): name = models.CharField(max_length=100) # regular field schema.add_field(name='field',...
enhancement