django-admin2/docs/design.rst

28 lines
608 B
ReStructuredText
Raw Normal View History

2013-05-18 11:45:31 +00:00
======
Design
======
2013-05-18 11:55:32 +00:00
Workflow Pieces
----------------
* Apps
* Apps.models
* AdminObj
* Appstore
2013-05-18 11:45:31 +00:00
2013-05-18 11:55:32 +00:00
Workflow
----------------
2013-05-18 11:45:31 +00:00
1. Instantiate Appstore
2. Loop through the Apps then models per App
3. Admin2s are created from models: djadmin2.models.register(Poll)
4. Admin2s contain methods/properties necessaey for UI
2013-05-19 13:04:13 +00:00
5. Views
UI Goals
---------
1. Replicate the old admin UI as closely as possible in the bootstrap/ theme. This helps us ensure that admin2/ functionality has parity with admin/.
2. Once (1) is complete and we have a stable underlying API, experiment with more interesting UI variations.