Michael Dacanay

Results 7 comments of Michael Dacanay

Hi @morlandi, yes I found that after my post. I think it is a good step towards what I was looking for. I have a couple questions: 1. Is there...

I had this same issue for headphones. Will the PR #10 be approved/merged?

It doesn't filter when using the column search box. But there is some other weird behavior: - The date displayed in the column is different from the date that appears...

For example, if a date model has a field: ``` created_date = models.DateTimeField(auto_now_add=True) ``` The value in the inner table looks like "2022-09-15 18:32:27+00:00". I tried `2022-09-15`, `09/15/2022`, even the...

Hi @morlandi, thank you so much for your reply. So far, I have been able to figure out that `change_list_results.html` (from https://github.com/django/django/blob/stable/1.4.x/django/contrib/admin/templates/admin/change_list_results.html) is the template to override. I am able...

Thank you @morlandi for pointing me in the right direction. I am now using `change_list.html` with full path `myproject/templates/admin/myapp/change_list.html`: ``` {% extends 'admin/change_list.html' %} {% load static %} {% block...

I believe the table from `{{ block.super }}` comes from the content block in https://github.com/django/django/blob/stable/1.4.x/django/contrib/admin/templates/admin/change_list.html: ``` {% block result_list %} {% if action_form and actions_on_top and cl.full_result_count %}{% admin_actions %}{%...