예제 #1
0
파일: client.py 프로젝트: mirobeka/notebook
def notebook():
    notes = Note.get_sample_notes()
    return render_template("main.jinja", notes=notes)
예제 #2
0
파일: api.py 프로젝트: mirobeka/notebook
def get_notes():
    notes = Note.get_sample_notes()
    return jsonify(notes)
예제 #3
0
def notebook():
    notes = Note.get_sample_notes()
    return render_template("main.jinja", notes=notes)
예제 #4
0
파일: api.py 프로젝트: chusri/notebook
def get_notes():
    notes = Note.get_sample_notes()
    return jsonify(notes)