Saturday, November 21, 2015

Re: I had proglem with .css file loaded to template

And also when I change path to app css file

accounts - style.css

body {
    background
-color: green;
}

h2
{
    color
: blue;
}

in page details code I had

body {
    background
: red ;
}

h2
{
    color
: blue;
}

with was set a long time ago, now I set green background but page is red :/


W dniu sobota, 21 listopada 2015 14:21:36 UTC+1 użytkownik Dariusz Mysior napisał:

I have a problem with loading the css file, after calling index.html who inherits base_ownsite.html which reads css page will not show background color or font color ...

base_ownsite.html

{% load staticfiles %} <!DOCTYPE html> <html lang="en"> <head> <title>{% block title %}{% endblock %}</title> <link rel="stylesheet" type="text/css" href="{% static 'ownsite/css /style.css' %}" /> </head> <body> {% block content %} {% endblock %} </body> </html>

index.html

{% extends 'ownsite/base_ownsite.html' %} {% block content %} {% if user.is_authenticated %} <p>Jesteś zalogowany <a href='accounts/my_view'>{{ user.username }}</a></p> <p><a href='/accounts/logout_view'>wyloguj</a></p> {% else %} <h2>Strona główna</h2> <a href='/accounts/login_view'>logowanie</a> <a href='/accounts/register_user'>rejestracja</a> {% endif %} {% endblock %}



style.css




 body
{
 background
: yellow;
}

h2
{
 color
: red;
}

p
{
 color
: yellow;
 
}

settings.py

STATIC_URL = '/static/'

 STATICFILES_DIRS
= (
 
"/ownsite/static",
)

--
You received this message because you are subscribed to the Google Groups "Django users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to django-users+unsubscribe@googlegroups.com.
To post to this group, send email to django-users@googlegroups.com.
Visit this group at http://groups.google.com/group/django-users.
To view this discussion on the web visit https://groups.google.com/d/msgid/django-users/73d57b6f-a3b7-412c-94b1-99d69e29f386%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

No comments:

Post a Comment