Controller.prototype.showCompleted = function () {
        var that = this;
        that.model.read({ completed: true }, function (data) {
            that.view.render('showEntries', data);
        });