def new_ad(): return render_template("new_ad.html", ads=Ad.get_all())
def list_ads(): return render_template("ads.html", ads=Ad.get_all())