I don't understand exactly what do you mean, but if those images are
uploaded by the user (for example, using the admin app), they should be
"{{ MEDIA_URL }}{{ marke.marke }}" instead of "{{ STATIC_URL }}images/{{
marke.marke }}.jpg"



On 02/28/2013 12:06 PM, Maria wrote:
> Hello everyone,
>  
> I have a variable I want to have access to in my Django template. But
> somehow I can't manage to do that.
>  
> I got *Django/mytemplates/polls/detail.html (template) *where I want to
> insert an image:
>  
> 
>     {% load staticfiles %}
> 
>     <html>
>     <head>
>     <link href="{% static "style.css" %}" rel="stylesheet"
>     type="text/css" media="screen" />
> 
>     </head>
>     <body>
>      <img src="{{ STATIC_URL }}images/{{ marke.marke }}.jpg"
>     alt="Picture" />
>      
> 
>  
>  
> and
>  
> *Django/mysite/polls/marke.py* :
>  
> 
>     from choice import*
> 
>     global marke
>     marke = read_m()
> 
> The value of marke is *marke3 *and I have an image marke3.jpg. I
> successfully used another variable to insert an image (poll.id) but this
> time it wont work.
> The folder 'polls' is in my INSTALLED_APPS.
>  
> What can I do?
>  
>  
>  
>  
>  
> 
> -- 
> 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 [email protected].
> To post to this group, send email to [email protected].
> Visit this group at http://groups.google.com/group/django-users?hl=en.
> For more options, visit https://groups.google.com/groups/opt_out.
>  
>  


-- 
Kind regards,

Roberto López López


System Developer
Parallab, Uni Computing
Høyteknologisenteret, Thormøhlensgate 55
N-5008 Bergen, Norway
Tel:        (+47) 555 84091

-- 
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 [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/django-users?hl=en.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to