Bilal Tonga

Results 4 comments of Bilal Tonga

Added 'tr' locale to pull request

I have started to implement your repo to Adminlte 3 rc4 version. Its under development. https://github.com/Creworker/django-adminlte3

I deleted success_url=reverse_lazy(url), line in initialize_create(self, basename) function. and added def get_absolute_url(self): to my models. It works now but initialize_delete function working like default list view.

I created custom model_generic.mustache with new to_json() method. It works with excluded fields also. ```python def to_json(self) -> str: """Returns the JSON representation of the model using alias""" excluded_fields: Set[str]...