A Django app that provides helpers for serving static files.

learn more… | top users | synonyms

0
votes
2answers
26 views

Loading images in a static file

So I have completed the Django tutorial, play around with it some, and feel that I have a good understanding of Django. The only problem I am facing is that when I try to display a static page for a ...
0
votes
0answers
17 views

Linking Django staticfiles into <div style=“…”> tag

I need to convert a web page into a Django template, and I want to use static files in order to do so. After doing {% load staticfiles %} I can correctly import js and css files stored in ...
1
vote
1answer
26 views

django protect static file [duplicate]

I have read some posts about protect django serving static files. Someone mentions Nginx and something else. I believe they works. My question is that is that possible to hide the static files ...
0
votes
2answers
46 views

How to server Static Files with Django 1.4 on Windows?

I need to link a CSS file to a simple hmtl page and it just doesn't work! I have red the Docs and watched like 10 Videos that develop on Linux Systems, but non of them come along with the Config of ...
1
vote
1answer
45 views

apache server cant find static files in Django project

I'm trying to upload my code on an apache server using mod_python. I have tried a lot but the server is not able to access my static files (all my images, js and css). Here are my Virtualhost ...
0
votes
2answers
40 views

Django static files link

thanks for looking into this, cause it's getting on my nerves now:) I can't get a style.css (or any static file to get oared at all!) and I have googled around and none of the solutions worked so ...
-2
votes
1answer
83 views

Static URL and CSS in Django [duplicate]

I am trying to setup a static url in Django and have my templates use it to link to the css. Here is my code. Why is it not working? Also, what is the best practice for setting this up? Thanks. # ...
1
vote
1answer
55 views

django {{ STATIC_URL }} doesn't work sometimes

A pathetic django beginner has got a blocker problem to access static files (css, js) on some views. Mainly, on the homepage those static files are perfectly accessible, but on a different page, it ...
0
votes
1answer
257 views

How to link to an .ipa file (over the air ios app installation) using django and STATIC_URL?

I have a django server set up in development. It is basically the simplest "app store" you can imagine. I can now finally serve up static images using STATIC_URL as the prefix. I however have failed ...
0
votes
1answer
60 views

How to store static, but user-generated files on Heroku/Django

What's the best way to handle user-generated static files on Django/Heroku? The Django system for static files seems overly complicated (why do you need collectstatic at all?), plus collectstatic ...
1
vote
2answers
261 views

Where is template context processor in Django 1.5?

Is it supposed to be listed in Settings.py automatically or do I have to add it? I am having a ridiculously hard time serving up an image file in development and the docs are too terse for my taste ...
1
vote
2answers
69 views

django - Server error loading static files

So im building my own django site. Right now im stuck with loading the statics. im getting the following error in the console: GET http://localhost:8000/static/css/style.css 500 (Internal Server ...
0
votes
1answer
44 views

Django 1.4, checking if a static file exists when DEBUG=True

I'm trying to write some code that checks if a static file exists while in DEBUG mode, and I can't get it working. Here's what I've tried in the console: >> from django.conf import settings ...
0
votes
2answers
50 views

Django 1.4 static files css not applied

I have spent the last few days figuring out how to include an css file into a Django template. I still did not succeed so am hoping someone can help me out. I have the following settings: ...
3
votes
1answer
288 views

Serving static admin files for Django 1.5 in a shared hosting environment

I'm trying to get a fresh installation of Django 1.5 running on an Apache-Server. The WebServer is situated on a shared hosting platform called uberspace.de which means I have no access to the Apache ...
0
votes
0answers
80 views

Why does collectstatic erase my files when I run it with django compressor installed?

I recently installed Django Compressor (1.2) on my Django app (1.4.1). Up until I installed django-compressor, when I ran collectstatic, it would upload my static files to S3 via boto flawlessly ...
0
votes
2answers
495 views

STATIC_URL Not Working After Django 1.5 Upgrade

Im probably just tired and dont notice something obvious here but after upgrade to Django 1.5 the path to my static files is broken. settings.py from os.path import abspath, basename, dirname, join, ...
2
votes
2answers
141 views

Using static files in custom 404/500 pages in Django

I would like to use some custom CSS and images on my custom 404/500 pages that I made. Django doesn't include the STATIC_URL variable in those pages though. What would be the best way to accomplish ...
0
votes
1answer
53 views

Static Assets in Django not Finding STATICFILES_DIRS

Here is the error I receive when trying to load {{STATIC_URL}}img/memestatlogo2.jpg. Why is django not looking in STATICFILES_DIRS for img/memestatlogo2.jpg? Page not found (404) Request Method: GET ...
1
vote
1answer
91 views

Django Static Files Not Loading With Proven Proper Setup

I'm running Django 1.4 with Python 2.7 on Ubuntu 12.10. I work on a team of developers and something seems to have changed from yesterday to today and I can't seem to load static files locally with ...
0
votes
1answer
116 views

dajaxice collectstatic creating a temp file

I'm having a problem with Dajaxice and how it appears to create a custom javascript file to be used for ajax. When one runs manage.py collectstatic with Dajaxice installed, it creates a custom ...
0
votes
1answer
47 views

how to use django collectmedia?

I have just downloaded the collectmedia snippet from http://djangosnippets.org/snippets/1068/ but im not sure how to go about using it. Where do i have to put it and how do i call it? I now have: - ...
1
vote
1answer
78 views

Does django staticfiles skip the middleware?

I'm running a django 1.4.1 app. I didn't realize that just including django.contrib.staticfiles into INSTALLED_APPS in your settings is enough to get static files served while settings.DEBUG is True, ...
0
votes
1answer
237 views

Dajaxice not found on production server

I have a Django 1.4 project, running on Python 2.7 in which I'm using Dajaxice 0.5.4.1. I have set it up on my development machine (Windows 7) and everything works perfectly. However when I deploy my ...
0
votes
2answers
71 views

Default way to manage static files in Django

Im trying to get rid of 404 with Django local server. My page includes this: <script type="text/javascript" src="{{ STATIC_URL }}js/myjscript.js"></script> Actual file lies in ...
0
votes
0answers
87 views

Django 1.4: admin not using STATIC_URL

I've upgrade my Django from 1.3 to 1.4, and using django.contrib.staticfiles. I have to change the ADMIN_MEDIA_PREFIX to only use STATIC_URL, wich is defined as STATIC_URL = '/static/' When I open ...
0
votes
1answer
124 views

collectstatic fails to collect admin static files

I face below error when I run collectstatic and Admin page is served without css. Error: IOError: [Errno 2] No such file or directory: ...
0
votes
2answers
192 views

How do I reset the django cache for static file names?

I have a problem with a django 1.4 site hosted on Heroku. We are using Memcache for various caching, like template and static asset caches. [Update: According to django docs, django does not seem to ...
0
votes
3answers
148 views

Render static html page inside my base django template

I'm developing a web portal using - Django 1.2 - Apache - Mod WSGI I've several HTML files which are being served by apache. I want to render those static HTML pages under my base template in ...
0
votes
2answers
146 views

static files not found in django 1.4

While deploying a django app. I am having problem with static files. I am having JS and CSS files in static directory. But browser is not able to find those files. I am having same files and settings ...
1
vote
1answer
240 views

Amazon Elastic Beanstalk not serving django static files

I am trying to put up a simple django app on elastic beanstalk. I thought I had the static parts of the app figured out as it works with heroku and on a server that was set up manually. In debugging ...
1
vote
1answer
63 views

Custom admin interface in Django

Django's documentation provides an easy way of installing admin app. It assumes the structure of files as follows: mysite/ manage.py mysite/ settings.py #adding `admin` under ...
0
votes
1answer
418 views

Serving Django static files on Heroku

I'm having an odd issue when porting my Django site from dev server to Heroku. I know I'm not supposed to use django to directly serve the static files, but I'm just testing out an idea for now. ...
1
vote
1answer
555 views

Django: serving static file on debug=false

I know this question was asked many times, but none of the answers i found and tried helped me. Those are my static files settings: STATIC_ROOT = os.path.abspath(SETTINGS_PATH+'/staticfiles/') # ...
0
votes
3answers
78 views

why doesn't django handle static files all by itself, without apache?

when develop, django can handle static files by changing settings.py, and I suppose it won't cost much resources to handle those static files. But when apply the project to productive environment ...
1
vote
3answers
137 views

Django can't find static images in templates

I've looked at pretty much all the examples here and in the documentation and it just isn't working at all So in my settings.py file I have STATIC_ROOT = '/mattr/static/' STATIC_URL = ...
2
votes
1answer
671 views

appfog django static files

does anyone of you have experience with appfog and deploying django website with static files (css)? I've a project, actually is the test from appfog (https://github.com/appfog/af-python-django) that ...
3
votes
1answer
224 views

How to use django-cumulus for serving Static files?

I'm trying to use django-cumulus for serving files off Rackspace CloudFiles. I'm currently only trying it on my local dev server, using Django 1.4.2. I can use cumulus's syncstatic management command ...
1
vote
1answer
130 views

Receiving 404 error when trying to load static urls directly in Django

When I visit the url of my static files (http://127.0.0.1:8000/site_media/static/css/site_base.css) I receive a 404 error message. 404 from the log [27/Oct/2012 14:14:54] "GET ...
2
votes
1answer
273 views

How to use require.js for managing JavaScript dependencies in a Django project?

I use RequireJS for managing dependencies between my JavaScript libraries and modules. The backend is written in Django. Django has many apps for managing static assets, but none of them talk about ...
0
votes
1answer
379 views

Django Collectstatic command Changed something

So I've never deployed a Django app and I'm trying to get up to speed on the whole thing. I ran the collectstatic command and now non of my static files will render. When I run the findstatic command ...
0
votes
0answers
133 views

Django javascript not working (css and image loading works correctly)

I use the staticfiles app to load CSS files, images and Javascript files in my Django app, from Amazon S3. Using collectstatic I have uploaded my files to S3, but when I load them with staticfiles, ...
1
vote
2answers
72 views

STATIC_URL Problems

Static files with Django are driving me insane. I'm successfully able to load my template from the directory specified in TEMPLATE_DIRS, but when I try to load my css and js files from the ...
0
votes
1answer
56 views

Changed Settings Config now Django Static files isnt working

So I updated my project settings with the following scheme PROJECT_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) /settings base.py prod.py dev.py Is this the correct ...
0
votes
1answer
234 views

Django static CSS JS IMAGE FILES not loading

It was working fine before, and I have no clue what changed but I'm getting errors now with static files loading =( Please help! Using Django 1.4 Urls.py from django.contrib.staticfiles.urls import ...
0
votes
0answers
103 views

CORS-Headers for staticfiles using django

How can I serve my django staticfiles with CORS-Headers? Cache-Control: no-cache Access-Control-Allow-Origin: * Access-Control-Allow-Methods: POST, GET, OPTIONS Access-Control-Allow-Credentials: ...
0
votes
2answers
577 views

Django 1.4.1 Admin CSS not showing

I know this question has been asked many times but none of the solutions seems to work for me. I just started using django and I'm having issues trying to get the CSS for the admin panel to show when ...
0
votes
1answer
69 views

Django: Is it possible to attach media files (css, javascript etc) to a View-class?

I can't fins any information on how to define css or javascript files in a view like: class MyView(View): .... class Media: css = { 'all' : 'mystyle.css' } If you have a form you can do ...
1
vote
3answers
344 views

Django css file not working

I've been looking around everywhere and trying everything but i cannot seem te get my css file to work in a Django template. My css i called style.css the code in the template right now looks like: ...
-1
votes
3answers
83 views

css in django templates

I have a problem using css in my django template, In my settings.py i have this : BASE_DIR = os.path.abspath(os.path.dirname(__file__) + '/') STATIC_URL = BASE_DIR + '/static/' In my paths I have ...

1 2 3