def go_previous_page(self):
        if self.current_page_index > 0:
            self.current_page_index -= 1
            return True
        else: