示例#1
0
def main():
    return render_template("main.html", all_tags=Tag.get_all_tags())
示例#2
0
def main():
    return render_template("main.html", all_tags=Tag.get_all_tags())
示例#3
0
文件: rest.py 项目: sysofwan/zapfeeds
def get_all_tags():
    tags = [tag.tag_string for tag in Tag.get_all_tags()]
    return jsonify({"results": tags})
示例#4
0
def get_all_tags():
    tags = [tag.tag_string for tag in Tag.get_all_tags()]
    return jsonify({'results': tags})