URL patterns ============ The Django REST Framework "format suffix patterns" pattern allows us to handle paths with format extensions like `/terms/Ghana/GradeLevels/B2.json` automatically. To see this magic, add the following lines to the bottom of `standrads-server/urls.py`: ```python for urlp in urlpatterns: print(urlp) ``` Here is the example debug output: ```python ' [name='api-juri-list']> \w*)$' [name='api-juri-detail']> \w*)\.(?P(json|html))/?$' [name='api-juri-detail']> /' [name='api-juri-vocab-list']> ' [name='api-juri-vocab-list']> \w*)/(?P\w*)$' [name='api-juri-vocab-detail']> \w*)/(?P\w*)\.(?P(json|html))/?$' [name='api-juri-vocab-detail']> //' [name='api-juri-vocab-term-list']> /' [name='api-juri-vocab-term-list']> \w*)/(?P\w*)/(?P[\w/]*)$' [name='api-juri-vocab-term-detail']> \w*)/(?P\w*)/(?P[\w/]*)\.(?P(json|html))/?$' [name='api-juri-vocab-term-detail']> (admin:admin) 'admin/'> ```