Python Django CSS reflektiert

Annahme

Da es nicht eindeutig war, wie CSS zu reflektieren ist, werde ich es beschreiben.

【Umgebung】 os python3.7.3 Django3.0.5

Anwendungsname: sns

【Dateiorganisation】 sns | - snsproject | | - setting.py | | - urls.py | - snsapp | | - urls.py | | - views.py | - templates | | - sns | | | - index.html | - static | | - css | | | - style.css |manage.py

Hauptthema

Ich werde es sofort umsetzen.

settings.py


・ ・ ・
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'sns', #Nachtrag
]
・ ・ ・
TEMPLATES = [
    {
        'DIRS': [
            os.path.join(BASE_DIR, 'templates'), #Nachtrag
        ],
            ],
        },
    },
]
・ ・ ・

STATIC_URL = '/static/'

STATICFILES_DIRS = (
    [
        os.path.join(BASE_DIR, "static"), #Nachtrag
    ]
)

Bearbeiten Sie als Nächstes templates / index.html.

index.html


{% load static %} 
<!DOCTYPE html>
<html lang="ja">
  <head>
    <meta http-equiv="Content-type" content="text/html; charset=utf-8" /> 
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <title>sns</title>
    <link href="{% static 'css/stylesheet.css' %}" rel="stylesheet">
  </head>
  <body>
  </body>
</html>

Das CSS wird jetzt wiedergegeben.

Recommended Posts

Python Django CSS reflektiert
Python Django Tutorial (5)
Python Django Tutorial (8)
Python Django Tutorial (6)
Python Django Tutorial (7)
Python Django Tutorial Tutorial
Python Django Tutorial (3)
Python Django Tutorial (4)
Django 1.11 wurde mit Python3.6 gestartet
Python --Vergleichen Sie Django css / js
Zusammenfassung des Python Django-Tutorials
Django Python Web Framework
Django Python Verschiebungstabelle
Versuchen Sie Debian + Python 3.4 + django1.7 ……
Mach Django mit CodeStar (Python3.6.8, Django2.2.9)
Einführung in Python Django (2) Win
Mach Django mit CodeStar (Python3.8, Django2.1.15)
Python3 + Django ~ Mac ~ mit Apache
ToDo-Listenerstellung [Python Django]
Erste Schritte mit Python Django (1)
Erste Schritte mit Python Django (3)
Installieren Sie Python 3.7 und Django 3.0 (CentOS)
GAE + Python + Django süchtig machende Geschichte
Einführung in Python Django (6)
Python Django Tutorial Cheet Sheet
Erste Schritte mit Python Django (5)
Die Django-Authentifizierungsfunktion wird nicht gut wiedergegeben
Python
Python Practice_Virtual Environment Setup ~ Django-Installation
CSS-Analyse mit cssutils in Python
Erstellen Sie eine neue Anwendung mit Python, Django
Django
Python + Django + Scikit-Learn + Mecab (2) mit Heroku
Führen Sie python3 Django1.9 mit mod_wsgi aus (deploy)
Installieren Sie das Python Framework Django mit pip
Einführung in Python Django (2) Mac Edition
Migrieren Sie Django-Anwendungen, die unter Python 2.7 ausgeführt werden, auf Python 3.5
CSS-Umgebung in 10 Minuten mit Django erstellt
Ich habe eine Frage! (Python, Django) Einfach
CentOS 6.4, Python 2.7.3, Apache, mod_wsgi, Django
Aufbau des Python-Ausführungsservers (Python + uWSGI + Django + Nginx)
Bearbeiten Sie HTML und CSS der Django-Verschiebungstabelle
[Python] Führen Sie UIKit3 in das Django-Projekt ein