xxxxxxxxxx
# say my model name is exercise, so i no need to set basename for the below
router.register('exercise', views.ExerciseViewSet, basename='exxercise')
# wheras , i want to change prefix to new_exercise i will need to set basename
router.register('new_exercise', views.ExerciseViewSet, basename='new_exercise')