300
300
# Don't cache for long if we are waiting for synchronization.
301
301
elif self.bugwatch and not self.synchronized:
304
304
# For the rest of the first day, the rendering changes every
305
305
# hour. '4 hours ago'. Expire in 15 minutes so the timestamp
306
306
# is at most 15 minutes out of date.
307
307
elif self.datecreated > now - timedelta(days=1):
310
310
# Otherwise, cache away. Lets cache for 6 hours. We don't want
311
311
# to cache for too long as there are still things that can
312
312
# become stale - eg. if a bug attachment has been deleted we
313
313
# should stop rendering the link.
318
318
class BugCommentView(LaunchpadView):