Created basic working client UI using ExtJS.
[~jspiros/reader.git] / admin.py
1 from .models import Feed, Entry, Subscription
2 from django.contrib import admin
3
4
5 admin.site.register((Feed, Entry, Subscription))