Foros del Web » Programando para Internet » Python »

Imagenes en el servidor de desarrollo django

Estas en el tema de Imagenes en el servidor de desarrollo django en el foro de Python en Foros del Web. A ver, seguramente soy muy tonto y estoy pasando algo por alto. Intento que el servidor de desarrollo del django me muestre la imágenes, para ...
  #1 (permalink)  
Antiguo 17/12/2011, 09:33
 
Fecha de Ingreso: diciembre-2011
Mensajes: 7
Antigüedad: 12 años, 4 meses
Puntos: 0
Pregunta Imagenes en el servidor de desarrollo django

A ver, seguramente soy muy tonto y estoy pasando algo por alto. Intento que el servidor de desarrollo del django me muestre la imágenes, para ello, sigo los pasos de este enlace:
https://docs.djangoproject.com/en/dev/howto/static-files/

Pero no hay manera, este es mi fichero settings.py:
Código Python:
Ver original
  1. # Django settings for eTienda project.
  2.  
  3. DEBUG = True
  4. TEMPLATE_DEBUG = DEBUG
  5.  
  6. ADMINS = (
  7.     # ('Your Name', '[email protected]'),
  8. )
  9.  
  10. MANAGERS = ADMINS
  11.  
  12. DATABASES = {
  13.     'default': {
  14.         'ENGINE': 'django.db.backends.sqlite3',     # Add 'postgresql_psycopg2', 'postgresql', 'mysql', 'sqlite3' or 'oracle'.
  15.         'NAME': 'midb.db',                              # Or path to database file if using sqlite3.
  16.         'USER': '',                             # Not used with sqlite3.
  17.         'PASSWORD': '',                         # Not used with sqlite3.
  18.         'HOST': '',                             # Set to empty string for localhost. Not used with sqlite3.
  19.         'PORT': '',                             # Set to empty string for default. Not used with sqlite3.
  20.     }
  21. }
  22.  
  23. # Local time zone for this installation. Choices can be found here:
  24. # http://en.wikipedia.org/wiki/List_of_tz_zones_by_name
  25. # although not all choices may be available on all operating systems.
  26. # On Unix systems, a value of None will cause Django to use the same
  27. # timezone as the operating system.
  28. # If running in a Windows environment this must be set to the same as your
  29. # system time zone.
  30. TIME_ZONE = 'Europe/Madrid'
  31.  
  32. # Language code for this installation. All choices can be found here:
  33. # http://www.i18nguy.com/unicode/language-identifiers.html
  34. LANGUAGE_CODE = 'es-es'
  35.  
  36. SITE_ID = 1
  37.  
  38. # If you set this to False, Django will make some optimizations so as not
  39. # to load the internationalization machinery.
  40. USE_I18N = True
  41.  
  42. # If you set this to False, Django will not format dates, numbers and
  43. # calendars according to the current locale
  44. USE_L10N = True
  45.  
  46. # Absolute filesystem path to the directory that will hold user-uploaded files.
  47. # Example: "/home/media/media.lawrence.com/media/"
  48. MEDIA_ROOT = '/home/vicent/Documentos/ProyectosDjango/eTienda/media/'
  49.  
  50. # URL that handles the media served from MEDIA_ROOT. Make sure to use a
  51. # trailing slash.
  52. # Examples: "http://media.lawrence.com/media/", "http://example.com/media/"
  53. MEDIA_URL = '/media/'
  54.  
  55. # Absolute path to the directory static files should be collected to.
  56. # Don't put anything in this directory yourself; store your static files
  57. # in apps' "static/" subdirectories and in STATICFILES_DIRS.
  58. # Example: "/home/media/media.lawrence.com/static/"
  59. STATIC_ROOT = ''
  60.  
  61. # URL prefix for static files.
  62. # Example: "http://media.lawrence.com/static/"
  63. STATIC_URL = '/static/'
  64.  
  65. # URL prefix for admin static files -- CSS, JavaScript and images.
  66. # Make sure to use a trailing slash.
  67. # Examples: "http://foo.com/static/admin/", "/static/admin/".
  68. ADMIN_MEDIA_PREFIX = '/static/admin/'
  69.  
  70. # Additional locations of static files
  71. STATICFILES_DIRS = (
  72.     # Put strings here, like "/home/html/static" or "C:/www/django/static".
  73.     # Always use forward slashes, even on Windows.
  74.     # Don't forget to use absolute paths, not relative paths.
  75. )
  76.  
  77. # List of finder classes that know how to find static files in
  78. # various locations.
  79. STATICFILES_FINDERS = (
  80.     'django.contrib.staticfiles.finders.FileSystemFinder',
  81.     'django.contrib.staticfiles.finders.AppDirectoriesFinder',
  82. #    'django.contrib.staticfiles.finders.DefaultStorageFinder',
  83. )
  84.  
  85. # Make this unique, and don't share it with anybody.
  86. SECRET_KEY = 'q&1)gv=o2s-716d9$2f*_^pg##adg8p1wud&)!o*qppk!%cd)f'
  87.  
  88. # List of callables that know how to import templates from various sources.
  89. TEMPLATE_LOADERS = (
  90.     'django.template.loaders.filesystem.Loader',
  91.     'django.template.loaders.app_directories.Loader',
  92. #     'django.template.loaders.eggs.Loader',
  93. )
  94.  
  95. MIDDLEWARE_CLASSES = (
  96.     'django.middleware.common.CommonMiddleware',
  97.     'django.contrib.sessions.middleware.SessionMiddleware',
  98.     'django.middleware.csrf.CsrfViewMiddleware',
  99.     'django.contrib.auth.middleware.AuthenticationMiddleware',
  100.     'django.contrib.messages.middleware.MessageMiddleware',
  101. )
  102.  
  103. ROOT_URLCONF = 'eTienda.urls'
  104.  
  105. TEMPLATE_DIRS = (
  106.     '/home/vicent/Documentos/ProyectosDjango/eTienda/eShop/static/Templates',
  107.     # Put strings here, like "/home/html/django_templates" or "C:/www/django/templates".
  108.     # Always use forward slashes, even on Windows.
  109.     # Don't forget to use absolute paths, not relative paths.
  110. )
  111.  
  112. INSTALLED_APPS = (
  113.     'django.contrib.auth',
  114.     'django.contrib.contenttypes',
  115.     'django.contrib.sessions',
  116.     'django.contrib.sites',
  117.     'django.contrib.messages',
  118.     'django.contrib.staticfiles',
  119.     'eTienda.eShop',
  120.     'django.contrib.admin',
  121.     # Uncomment the next line to enable the admin:
  122.     # 'django.contrib.admin',
  123.     # Uncomment the next line to enable admin documentation:
  124.     # 'django.contrib.admindocs',
  125. )
  126.  
  127. # A sample logging configuration. The only tangible logging
  128. # performed by this configuration is to send an email to
  129. # the site admins on every HTTP 500 error.
  130. # See http://docs.djangoproject.com/en/dev/topics/logging for
  131. # more details on how to customize your logging configuration.
  132. LOGGING = {
  133.     'version': 1,
  134.     'disable_existing_loggers': False,
  135.     'handlers': {
  136.         'mail_admins': {
  137.             'level': 'ERROR',
  138.             'class': 'django.utils.log.AdminEmailHandler'
  139.         }
  140.     },
  141.     'loggers': {
  142.         'django.request': {
  143.             'handlers': ['mail_admins'],
  144.             'level': 'ERROR',
  145.             'propagate': True,
  146.         },
  147.     }
  148. }


Y en el template, después de probarlo de infinitas maneras, he decidido meterle la dirección directamente
Código HTML:
Ver original
  1. <img alt="Foto de {{articulo.nombre}}" src="/home/vicent/Documentos/ProyectosDjango/eTienda/media/ballesta/ballesta.jpg" />

Pero no hay manera, cuando miro el código funte de la página me aparece:
Código HTML:
Ver original
  1. <img alt="Foto de Espada" src="" />

¿Que he hecho mal? ¿por qué no se queda ni la url puesta a mano?

No se si esto será importante, pero la consola me muestra esto en color naranja:
Código ShellScript:
Ver original
  1. GET /home/vicent/Documentos/ProyectosDjango/eTienda/media/ballesta/ballesta.jpg HTTP/1.1" 404 2423

Última edición por cagarnera; 17/12/2011 a las 09:38
  #2 (permalink)  
Antiguo 17/12/2011, 10:59
Avatar de razpeitia
Moderador
 
Fecha de Ingreso: marzo-2005
Ubicación: Monterrey, México
Mensajes: 7.321
Antigüedad: 19 años, 1 mes
Puntos: 1360
Respuesta: Imagenes en el servidor de desarrollo django

Una cosa es static y otra cosa es media.

Si quieres servir media solo tienes que poner unas lineas en el urlconf.

Ver aquí.

No olvides usar media_url en vez de la ruta completa.

Etiquetas: desrrollo, django, imagenes
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 13:45.