aboutsummaryrefslogtreecommitdiffstats
path: root/rrs/migrations/__init__.py
AgeCommit message (Collapse)Author
2018-05-04rrs: add initial migrationPaul Eggleton
This is of course a new Django migration rather than the previous South one. This will have to be applied using --fake-initial on a database that already has the RRS tables. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-05-04rrs: drop old migrationsPaul Eggleton
These south migrations aren't useful. Signed-off-by: Paul Eggleton <paul.eggleton@linux.intel.com>
2018-05-04rrs: Add missing __init__.py in migrationsAníbal Limón
Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
2018-05-04rrs: Add support for ReleaseAníbal Limón
Now Recipes and Maintainers page can be access by Release and Milestone, to support this a url namespace was add also update views/templates handle new URL's. rrs/models.py: Add support model for store Release also foregin key in Milestone. rrs/admin.py: Add admin site for Release model. rrs/fixtures/initial_data.json: Add initial data with Release/Milestone relation. rrs/{views, urls}.py: Add support for handle Release/Milestone. templates/rrs: Update to handle new URL's. Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>
2018-05-04rrs: Add applicationAníbal Limón
Add models for store Milestone, Maintainer and Recipe{Maintainer, Upgrade, Upstream, Distro}, add initial data for Milestone and Maintainer, initial migration and admin sites. Add rrs/context_processors.py for return the site_name and application for use in templates. Signed-off-by: Aníbal Limón <anibal.limon@linux.intel.com>