The reason your template tags are not working is because you need to actually return the instance in get_object()
:
def get_object(self):
return Shipment.objects.get(pk=self.kwargs['trackid'])
If you don't return anything, the method returns None
(its the default return value); and thus your templates have nothing to show.