Yurii Popivniak
Yurii Popivniak
Hi @luisgarciaalanis, I checked your repo and you are right, the `Test` resolver is invoked before the directive handler. From my vision, that is correct behavior. First of all, you...
You have to extends from `admin/base.html`. In example, for Flask-Security you can do this: ``` {% extends 'admin/base.html' %} {% block access_control %} {% if current_user.is_authenticated %} {% if current_user.name...
You have to overload a method `__str__` (for Python 3) or `__unicode__` (for Python 2): ``` # for python3 class Email (db.Document): value = db.StringField() def __str__(self): return self.value class...