- Implement admin configurations for User, Member, Family, and FamilyMembership, with specialized inlines and filtered displays. - Introduce `UserCreationForm` and `UserChangeForm` for streamlined user management. - Enhance Family model with improved string representation and made name optional. - Add `Member.contact_email` property for prioritized email retrieval. - Include tests for the updated Family string logic, contact email functionality, and admin integration. - Add initial migration for club models (Club, ClubMembership) and updated migration for Family in the authentication app. - Configure IntelliJ IDEA for local SQLite database access.
12 lines
530 B
XML
12 lines
530 B
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project version="4">
|
|
<component name="DataSourceManagerImpl" format="xml" multifile-model="true">
|
|
<data-source source="LOCAL" name="clubmanager-dev" uuid="840b050e-fdb0-4cf8-a4e7-3edb02bfaacb">
|
|
<driver-ref>sqlite.xerial</driver-ref>
|
|
<synchronize>true</synchronize>
|
|
<jdbc-driver>org.sqlite.JDBC</jdbc-driver>
|
|
<jdbc-url>jdbc:sqlite:$PROJECT_DIR$/db.sqlite3</jdbc-url>
|
|
<working-dir>$ProjectFileDir$</working-dir>
|
|
</data-source>
|
|
</component>
|
|
</project> |