I am not sure I understand your question clearly. Here is my shot at answering based on what I understood.
Adding a named regex group to your URL configuration should help:
(r'^plus/(?P\d{1,2})/$', hours_ahead),
This will let you keep the existing view:
def hours_ahead(request, offset):
...