The service we're creating is used for TODO lists. Implement the delete method for removing tasks.
The name of a task is passed in a query as a parameter todo. Remove this task from all_todos list if it's present.
If the task is not present in the list, raise the Http404 exception; in other case, return a redirection to the "/" page.