def main(): return render_template("main.html", all_tags=Tag.get_all_tags())
def get_all_tags(): tags = [tag.tag_string for tag in Tag.get_all_tags()] return jsonify({"results": tags})
def get_all_tags(): tags = [tag.tag_string for tag in Tag.get_all_tags()] return jsonify({'results': tags})