Skip to content

Instantly share code, notes, and snippets.

@diegotoral
Created March 20, 2014 22:04
Show Gist options
  • Select an option

  • Save diegotoral/9674919 to your computer and use it in GitHub Desktop.

Select an option

Save diegotoral/9674919 to your computer and use it in GitHub Desktop.

Revisions

  1. diegotoral created this gist Mar 20, 2014.
    4 changes: 4 additions & 0 deletions pymongo.py
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,4 @@
    @app.route('/<ObjectId:task_id>')
    def show_task(task_id):
    task = mongo.db.tasks.find_one_or_404(task_id)
    return render_template('task.html', task=task)