Changes between Initial Version and Version 1 of Ticket #33912


Ignore:
Timestamp:
Aug 10, 2022, 5:25:45 AM (2 years ago)
Author:
François Granade
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #33912

    • Property Cc François Granade added
    • Property Component Uncategorizedcontrib.admin
    • Property Keywords admin multidb added
    • Property Type UncategorizedBug
  • Ticket #33912 – Description

    initial v1  
    1414The underlying issue is clearly that the admin will try to verify in the default DB that the objects doesn't exist. I think that the admin should *not* look in the default DB, as I set it up to only use the 'other' DB for my model...
    1515
     16The issue only occurs in the admin, things are OK when editing the model objects in code:
    1617
    17 ```
     18{{{
    1819 % poetry run ./manage.py shell
    1920(...)
     
    2930>>> o.save()
    3031>>>
    31 ```
    3232
     33}}}
     34
Back to Top