Beispiel #1
0
def main():
    return render_template("main.html", all_tags=Tag.get_all_tags())
Beispiel #2
0
def main():
    return render_template("main.html", all_tags=Tag.get_all_tags())
Beispiel #3
0
def get_all_tags():
    tags = [tag.tag_string for tag in Tag.get_all_tags()]
    return jsonify({"results": tags})
Beispiel #4
0
def get_all_tags():
    tags = [tag.tag_string for tag in Tag.get_all_tags()]
    return jsonify({'results': tags})