##// END OF EJS Templates
Render post view template tag by calling post.get_view instead of duplicating...
Render post view template tag by calling post.get_view instead of duplicating the same functionality inside the tag handler

File last commit:

r821:572aaa88 default
r1096:c6db1561 default
Show More
mocks.py
4 lines | 125 B | text/x-python | PythonLexer
class MockRequest:
def __init__(self):
self.session = dict()
self.GET = dict()
self.POST = dict()