31 lines
524 B
Python
31 lines
524 B
Python
"""available views"""
|
|
|
|
from .public import (
|
|
ConfirmBlogRegistration,
|
|
HomeFeed,
|
|
Articles,
|
|
Blogs,
|
|
Browse,
|
|
Contribute,
|
|
Contact,
|
|
Events,
|
|
ConfirmEmail,
|
|
CallsForPapers,
|
|
Editions,
|
|
Groups,
|
|
Help,
|
|
Newsletters,
|
|
RegisterBlog,
|
|
RegisterCallForPapers,
|
|
RegisterConference,
|
|
RegisterGroup,
|
|
RegisterNewsletter,
|
|
Search,
|
|
Subscribe,
|
|
SubscribeEmail,
|
|
Thankyou,
|
|
UnsubscribeEmail,
|
|
)
|
|
|
|
from .feeds import ArticleFeed, EditionFeed, EventFeed, CombinedFeed
|