Django Project 8

Source: Internet
Author: User

Preparation [plain] django-admin.py startproject web05 django-admin.py startapp blog service mysqld start, and create the corresponding database python manage. create a templates file under the py runserver blog and configure settings in the template file. py [python] DATABASES = {'default': {'Engine ': 'django. db. backends. mysql ', 'name': 'web08', 'user': 'root', 'Password': '', 'host':'', 'Port ': '', }} INSTALLED_APPS = ('django. contrib. auth ', 'django. contrib. contentty Pes ', 'django. contrib. sessions ', 'django. contrib. sites ', 'django. contrib. messages ', 'django. contrib. staticfiles ', 'blog',) Configure urls. py [python] from django. conf. urls. defaults import patterns, include, url urlpatterns = patterns ('', url (R' ^ blog/index/$ ', 'blog. views. index') Configure views. py [python] from django. shortcuts import render_to_response from blog. models import Employee def index (req): emps = Empl Oyee. objects. all () return render_to_response('index.html ', {'emps': emps}) Configure models. py [python] # coding: utf8 from django. db import models # A class corresponds to a table class Employee (models. model): name = models. charField (max_length = 20) Currently, you must add, delete, and configure the template file in interactive mode [html] <? Xml version = "1.0" encoding = "UTF-8"?> <! DOCTYPE html PUBLIC "-// W3C // dtd xhtml 1.0 Strict // EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.