def _get_sound_view_footer_top_cache_keys(self, display_random_link=False): return [get_template_cache_key('sound_footer_top', self.sound.id, display_random_link)]
def _get_sound_display_cache_keys(self, is_authenticated=True, is_explicit=False): return [get_template_cache_key('display_sound', self.sound.id, is_authenticated, is_explicit)]
def _get_sound_view_cache_keys(self, is_explicit=False, display_random_link=False): return ([get_template_cache_key('sound_footer_bottom', self.sound.id), get_template_cache_key('sound_header', self.sound.id, is_explicit)] + self._get_sound_view_footer_top_cache_keys(display_random_link))