#!/usr/bin/env python3 # -*- coding: utf-8 -*- """ Author: Hendrik Schutter, mail@hendrikschutter.com Date of creation: 2022/07/20 Date of last modification: 2022/07/20 """ def html_comparison_head(): return ''' eBay competitor price compare ''' def html_comparison_navigation(counter): back_link = str((str(counter-1)+".html") if ((counter-1) > 0) else "#") current = str(counter) next_link = str((str(counter+1)+".html")) #TODO: test if last one and replace with '#' return '''

← Back

Compare #''' + current + '''

→ Next

'''