Graphs and tables for your Spotify account.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
296 B

  1. from .models import User
  2. def get_user_context(user_obj):
  3. """Get context for rendering with User's ID and secret.
  4. :user_obj: User object to make context for.
  5. :returns: context to pass back to HTML file.
  6. """
  7. return { 'user_id': user_obj.id, 'user_secret': user_obj.secret, }