MovieShowtime.find(:all,
                   :include => [:movie, :theatre],
                   :conditions => "
                         movie_showtimes.start_time - now() < '1 week'::interval
                     and movie_showtimes.start_time > now()
                   "
)

