Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 4026738
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T11:00:33+00:00 2026-05-20T11:00:33+00:00

I an writing a website that will have multiple skins. Each skin has its

  • 0

I an writing a website that will have multiple skins. Each skin has its own style sheet. I would like the skin used to be determined by a GET variable, so that this URL:

whatever?skin=foo

will cause the page to be rendered containing this HTML in the header:

<link rel="stylesheet" type="text/css" href="/site_media/foo.css"/>

(Normally I want the skin to be determined by a user’s preference, but I want this way of doing it as well, so a user can preview what a new skin will look like, as well as for making it easy for me while developing it.)

This is fairly easy to do in Django, for example you could use a template with this line:

<link rel="stylesheet" type="text/css" href="/site_media/{{skin}}.css"/>

And a view like this:

def whateverView(request):
    """ called by URL /whatever """
    skin = request.GET.get('skin', "default")
    c = RequestContext(request, {'skin': skin})
    html = whateverTemplate.render(c)
    return HttpResponse(html)

But I don’t want to have to do it like that, as I would have to add the same code to every single view, which would violate DRY.

So is there some way I can do it, such that it works on all my pages, while only writing the code once?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-20T11:00:34+00:00Added an answer on May 20, 2026 at 11:00 am

    You can do this using Django’s Context Processors: http://docs.djangoproject.com/en/dev/ref/templates/api/?#writing-your-own-context-processors. Or, you could enable django.core.conext_processors.request and access the request object in your template.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a website that will sell items from one of my classes. It
I'm writing a piece of code that requires the DOM of a website to
I am writing a website with Visual Studio 2008 and ASP.NET 3.5. I have
I am writing a website with PHP. Since it will need to be accessed
I'm writing multilingual website. I have several files on server like: /index.php /files.php /funny.php
I writing a web site that uses Active Directory to validate users. I don't
I'm writing a website in JSP using Struts and Hibernate. I'm looking for a
I am writing a website in my spare time for an educational facility and
I am writing a photo gallery/sharing website and want to (1) write EXIF data
I often use the website www.cplusplus.com as a reference when writing C code. I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.