##// END OF EJS Templates
Disable autoescape where not needed
Disable autoescape where not needed

File last commit:

r922:d17fdea9 default
r1954:2a7c5d13 default
Show More
base.py
18 lines | 321 B | text/x-python | PythonLexer
neko259
Added tag search. Refactored search to show any model results in a list.
r692 __author__ = 'neko259'
class Viewable():
def __init__(self):
pass
def get_view(self, *args, **kwargs):
neko259
Added required tags. At least one such tag is needed to create a thread. All...
r922 """
Gets an HTML view for a model
"""
pass
def get_search_view(self, *args, **kwargs):
"""
Gets an HTML view for search.
"""
pass