-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
36 changed files
with
839 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from django.contrib import admin | ||
from .models import BlogType, Blog | ||
|
||
@admin.register(BlogType) | ||
class BlogTypeAdmin(admin.ModelAdmin): | ||
list_display = ('id', 'type_name') | ||
|
||
@admin.register(Blog) | ||
class BlogAdmin(admin.ModelAdmin): | ||
list_display = ('title', 'blog_type', 'author', 'created_time', 'last_updated_time') |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
from django.apps import AppConfig | ||
|
||
|
||
class BlogConfig(AppConfig): | ||
name = 'blog' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
# Generated by Django 2.0 on 2018-10-28 08:58 | ||
|
||
from django.conf import settings | ||
from django.db import migrations, models | ||
import django.db.models.deletion | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
initial = True | ||
|
||
dependencies = [ | ||
migrations.swappable_dependency(settings.AUTH_USER_MODEL), | ||
] | ||
|
||
operations = [ | ||
migrations.CreateModel( | ||
name='Blog', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('title', models.CharField(max_length=50)), | ||
('content', models.TextField()), | ||
('created_time', models.DateTimeField(auto_now_add=True)), | ||
('last_updated_time', models.DateTimeField(auto_now=True)), | ||
('author', models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, to=settings.AUTH_USER_MODEL)), | ||
], | ||
), | ||
migrations.CreateModel( | ||
name='BlogType', | ||
fields=[ | ||
('id', models.AutoField(auto_created=True, primary_key=True, serialize=False, verbose_name='ID')), | ||
('type_name', models.CharField(max_length=15)), | ||
], | ||
), | ||
migrations.AddField( | ||
model_name='blog', | ||
name='blog_type', | ||
field=models.ForeignKey(on_delete=django.db.models.deletion.DO_NOTHING, to='blog.BlogType'), | ||
), | ||
] |
17 changes: 17 additions & 0 deletions
17
13.分页和shell命令行模式/blog/migrations/0002_auto_20200319_2356.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# Generated by Django 2.2.5 on 2020-03-19 15:56 | ||
|
||
from django.db import migrations | ||
|
||
|
||
class Migration(migrations.Migration): | ||
|
||
dependencies = [ | ||
('blog', '0001_initial'), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name='blog', | ||
options={'ordering': ['-created_time']}, | ||
), | ||
] |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
from django.db import models | ||
from django.contrib.auth.models import User | ||
|
||
class BlogType(models.Model): | ||
type_name = models.CharField(max_length=15) | ||
|
||
def __str__(self): | ||
return self.type_name | ||
|
||
class Blog(models.Model): | ||
title = models.CharField(max_length=50) | ||
blog_type = models.ForeignKey(BlogType, on_delete=models.DO_NOTHING) | ||
content = models.TextField() | ||
author = models.ForeignKey(User, on_delete=models.DO_NOTHING) | ||
created_time = models.DateTimeField(auto_now_add=True) | ||
last_updated_time = models.DateTimeField(auto_now=True) | ||
|
||
def __str__(self): | ||
return "<Blog: %s>" % self.title | ||
|
||
class Meta: | ||
ordering = ['-created_time'] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
ul.blog-types { | ||
list-style-type: none; | ||
} | ||
div.blog:not(:last-child){ | ||
margin-bottom: 2em; | ||
padding-bottom: 1em; | ||
border-bottom: 1px solid #eee; | ||
} | ||
div.blog h3 { | ||
margin-top: 0.5em; | ||
} | ||
div.blog p.blog-info { | ||
margin-top: 0; | ||
} | ||
|
||
ul.blog-info-description { | ||
list-style-type: none; | ||
margin-bottom: 1em; | ||
} | ||
ul.blog-info-description li{ | ||
display: inline-block; | ||
margin-right: 2em; | ||
} | ||
div.blog-content{ | ||
text-indent: 2em; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
{% extends 'base.html' %} | ||
{% block title %}{{ blog.title }}{% endblock %} | ||
{% block nav_blog_active %}active{% endblock %} | ||
|
||
{% load staticfiles %} | ||
{% block header_extends %} | ||
<link rel="stylesheet" href="{% static 'blog/blog.css' %}"> | ||
{% endblock %} | ||
|
||
{# 页面内容 #} | ||
{% block content %} | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-xs-10 col-xs-offset-1"> | ||
<h3>{{ blog.title }}</h3> | ||
<ul class="blog-info-description"> | ||
<li>作者:{{ blog.author }}</li> | ||
<li>分类:<a href="{% url 'blogs_with_type' blog.blog_type.pk %}">{{ blog.blog_type }}</a></li> | ||
<li>发表日期:{{ blog.created_time|date:"Y-m-d H:n:s" }}</li> | ||
</ul> | ||
<div class="blog-content">{{ blog.content }}</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
{% extends 'base.html' %} | ||
{% block title %}我的网站{% endblock %} | ||
{% block nav_blog_active %}active{% endblock %} | ||
|
||
{% load staticfiles %} | ||
{% block header_extends %} | ||
<link rel="stylesheet" href="{% static 'blog/blog.css' %}"> | ||
{% endblock %} | ||
|
||
{# 页面内容 #} | ||
{% block content %} | ||
<div class="container"> | ||
<div class="row"> | ||
<div class="col-xs-12 col-sm-8 col-md-9 col-lg-10"> | ||
<div class="panel panel-default"> | ||
<div class="panel-heading">{% block blog_list_title %}博客列表(一共有{{ page_of_blogs.paginator.count|length }}篇博客){% endblock %}</div> | ||
<div class="panel-body"> | ||
{% for blog in page_of_blogs.object_list %} | ||
<div class="blog"> | ||
<h3><a href="{% url 'blog_detail' blog.pk %}">{{ blog.title }}</a></h3> | ||
<p class="blog-info"> | ||
<span class="glyphicon glyphicon-tag"></span><a href="{% url 'blogs_with_type' blog.blog_type.pk %}">{{ blog.blog_type }}</a> | ||
<span class="glyphicon glyphicon-time"></span>{{ blog.created_time|date:"Y-m-d" }} | ||
</p> | ||
<p>{{ blog.content|truncatechars:30 }}</p> | ||
</div> | ||
{% empty %} | ||
<div class="blog"> | ||
<h3>-- 暂无博客,敬请期待 --</h3> | ||
</div> | ||
{% endfor %} | ||
</div> | ||
</div> | ||
<div> | ||
<ul class="pagination"> | ||
{# 上一页 #} | ||
<li> | ||
{% if page_of_blogs.has_previous %} | ||
<a href="?page={{ page_of_blogs.pageprevious_page_number }}" aria-label="Previous"> | ||
<span aria-hidden="true">«</span> | ||
</a> | ||
{% else %} | ||
<span aria-hidden="true">«</span> | ||
{% endif %} | ||
</li> | ||
{# 全部页码 #} | ||
{% for page_num in page_of_blogs.paginator.page_range %} | ||
<li><a href="?page={{ page_num }}">{{ page_num }}</a></li> | ||
{% endfor %} | ||
{# 下一页 #} | ||
<li> | ||
{% if page_of_blogs.has_next %} | ||
<a href="?page={{ page_of_blogs.next_page_number }}" aria-label="Next"> | ||
<span aria-hidden="true">»</span> | ||
</a> | ||
{% else %} | ||
<span aria-hidden="true">»</span> | ||
{% endif %} | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
<div class="hidden-xs col-sm-4 col-md-3 col-lg-2"> | ||
<div class="panel panel-default"> | ||
<div class="panel-heading">博客分类</div> | ||
<div class="panel-body"> | ||
<ul class="blog-types"> | ||
{% for blog_type in blog_types %} | ||
<li><a href="{% url 'blogs_with_type' blog_type.pk %}">{{ blog_type.type_name }}</a></li> | ||
{% empty %} | ||
<li>暂无分类</li> | ||
{% endfor %} | ||
</ul> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
{% extends 'blog/blog_list.html' %} | ||
{% block title %}{{ blog_type.type_name }}{% endblock %} | ||
|
||
{% block blog_list_title %} | ||
分类:{{ blog_type.type_name }}(一共有{{ blogs|length }}篇博客) | ||
<a href="{% url 'blog_list' %}">查看全部博客</a> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
from django.test import TestCase | ||
|
||
# Create your tests here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
from django.urls import path | ||
from . import views | ||
|
||
# start with blog | ||
urlpatterns = [ | ||
# http://localhost:8000/blog/1 | ||
path('', views.blog_list, name='blog_list'), | ||
path('<int:blog_pk>', views.blog_detail, name="blog_detail"), | ||
path('type/<int:blog_type_pk>', views.blogs_with_type, name="blogs_with_type"), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
from django.shortcuts import render_to_response, get_object_or_404 | ||
from django.core.paginator import Paginator | ||
from .models import Blog, BlogType | ||
|
||
def blog_list(request): | ||
blogs_all_list = Blog.objects.all() | ||
paginator = Paginator(blogs_all_list, 10) # 每10页进行分页 | ||
page_num = request.GET.get('page', 1) # 获取url的页码参数(GET请求) | ||
page_of_blogs = paginator.get_page(page_num) | ||
|
||
context = {} | ||
context['page_of_blogs'] = page_of_blogs | ||
context['blog_types'] = BlogType.objects.all() | ||
return render_to_response('blog/blog_list.html', context) | ||
|
||
def blog_detail(request, blog_pk): | ||
context = {} | ||
context['blog'] = get_object_or_404(Blog, pk=blog_pk) | ||
return render_to_response('blog/blog_detail.html', context) | ||
|
||
def blogs_with_type(request, blog_type_pk): | ||
context = {} | ||
blog_type = get_object_or_404(BlogType, pk=blog_type_pk) | ||
context['blog_type'] = blog_type | ||
context['blogs'] = Blog.objects.filter(blog_type=blog_type) | ||
context['blog_types'] = BlogType.objects.all() | ||
return render_to_response('blog/blogs_with_type.html', context) |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/usr/bin/env python | ||
import os | ||
import sys | ||
|
||
if __name__ == "__main__": | ||
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "mysite.settings") | ||
try: | ||
from django.core.management import execute_from_command_line | ||
except ImportError as exc: | ||
raise ImportError( | ||
"Couldn't import Django. Are you sure it's installed and " | ||
"available on your PYTHONPATH environment variable? Did you " | ||
"forget to activate a virtual environment?" | ||
) from exc | ||
execute_from_command_line(sys.argv) |
Empty file.
Oops, something went wrong.