Serge Matveenko

Results 92 comments of Serge Matveenko

Well, it looks like in most cases this could be achieved by creation of a mixin that handles variables extracted from the original asset. Consider the following example. ```python class...

What version of `django-registration-me` do you use? Do you understand that you will not be able to use django admin with MongoEngine documents?

there is a bunch of django admin interfaces for mongodb http://lnkfy.com/9h and at least one MongoEngine based https://github.com/dmpayton/django-mongoadmin (not sure is it usable enough, just googled it)

Thank you for your report. I think that Django 1.6 support is not a priority for this project as it is going to be superseded by https://github.com/lig/regme

RegistrationProfile is a descendant of the user class. It is User object already. All instances of the RegistrationProfile class are instances of the User class already.

Looks like it could be acceptable. Thank you for your suggestion.

@seglberg any update on this?

@seglberg @hellerstanislav how is it going?

@kroncatti Pydantic has two modes of parsing/validation: strict and lax. In lax mode it already coerces types in many cases such as this: ```py class Model(BaseModel): foo: int m =...