本文整理汇总了Python中models.News.city方法的典型用法代码示例。如果您正苦于以下问题:Python News.city方法的具体用法?Python News.city怎么用?Python News.city使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类models.News
的用法示例。
在下文中一共展示了News.city方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Python代码示例。
示例1: add_news
# 需要导入模块: from models import News [as 别名]
# 或者: from models.News import city [as 别名]
def add_news(request):
imgroot = '/var/pj/gk/st/news/'
imgroot54x54 = '/var/pj/gk/st/news/54x54/'
if request.method == "POST":
title = request.POST['news_name']
tags = request.POST['news_tags']
active = request.POST['news_status']
category = request.POST['news_category']
sweight = request.POST['news_priority']
date = request.POST['news_date']
text = request.POST['news_content']
n = News()
if 'news_autor' in request.POST:
n.autor = request.POST['news_autor']
if 'news_photo_autor' in request.POST:
n.photo_title = request.POST['news_photo_autor']
if 'news_origin' in request.POST:
n.origin = request.POST['news_origin']
if 'news_city' in request.POST:
n.city = request.POST['news_city']
if 'news_media' in request.POST:
n.media = request.POST['news_media']
user = User.objects.get(username=request.user)
n.owner = user
n.title = title
if active == 'on':
active = True
else:
active = False
n.active = active
n.text = text
n.sweight = sweight
n.date = date
n.save()
tagsl = tags.split(',')
tagsitems = []
for item in tagsl:
if len(item.strip()):
tagsitems.append(Tag.objects.get_or_create(name=item.strip())[0].id)
n.tags = tagsitems
categoryl = category.split(',')
categoryitems = []
for item in categoryl:
if len(item.strip()):
categoryitems.append(item)
n.category = categoryitems
tmpfile = handle_uploaded_file(request.FILES['news_logo'], str(n.id) + request.FILES['news_logo'].name[-4:])
img = Image.open('/tmp/' + tmpfile)
img.save(imgroot + str(n.id) + '.png', 'PNG')
img.thumbnail([54, 54], Image.ANTIALIAS)
img.save(imgroot54x54 + str(n.id) + '.png', 'PNG')
request.session['alert'] = 'Новость успешно добавлена'
return redirect('/news/admin/')