[PodcastLists] migration to Django ORM23/head
commit8730c54c2c5250f904ff32f5f69de7642e717c1e
authorStefan Kögl <stefan@skoegl.net>
Tue, 2 Sep 2014 16:21:44 +0000 (2 18:21 +0200)
committerStefan Kögl <stefan@skoegl.net>
Wed, 10 Sep 2014 10:44:22 +0000 (10 12:44 +0200)
tree4a6d506ae30c23dd2f0aa6ffd1b5a0b43f6e3f05
parentc8d7d9b9bedd6a718de52ed503c2bae64ceb588d
[PodcastLists] migration to Django ORM
30 files changed:
mygpo/api/advanced/lists.py
mygpo/db/couchdb/podcastlist.py [deleted file]
mygpo/directory/templates/podcast_lists.html
mygpo/directory/views.py
mygpo/maintenance/migrate.py
mygpo/podcastlists/__init__.py [new file with mode: 0644]
mygpo/podcastlists/admin.py [new file with mode: 0644]
mygpo/podcastlists/migrations/0001_initial.py [new file with mode: 0644]
mygpo/podcastlists/migrations/__init__.py [new file with mode: 0644]
mygpo/podcastlists/models.py [new file with mode: 0644]
mygpo/podcastlists/templates/list.html [moved from mygpo/share/templates/list.html with 91% similarity]
mygpo/podcastlists/templates/list_search.html [moved from mygpo/share/templates/list_search.html with 100% similarity]
mygpo/podcastlists/templates/lists.html [moved from mygpo/share/templates/lists.html with 93% similarity]
mygpo/podcastlists/templates/lists_user.html [moved from mygpo/share/templates/lists_user.html with 100% similarity]
mygpo/podcastlists/tests.py [new file with mode: 0644]
mygpo/podcastlists/urls.py [new file with mode: 0644]
mygpo/podcastlists/views.py [new file with mode: 0644]
mygpo/settings.py
mygpo/share/urls.py
mygpo/share/userpage.py
mygpo/share/views.py
mygpo/urls.py
mygpo/votes/__init__.py [new file with mode: 0644]
mygpo/votes/admin.py [new file with mode: 0644]
mygpo/votes/migrations/0001_initial.py [new file with mode: 0644]
mygpo/votes/migrations/__init__.py [new file with mode: 0644]
mygpo/votes/models.py [new file with mode: 0644]
mygpo/votes/tests.py [new file with mode: 0644]
mygpo/votes/views.py [new file with mode: 0644]
mygpo/web/views/__init__.py