This repository has been archived on 2023-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
python-blog/articles/views/api.py

27 lines
988 B
Python

from django.contrib.auth.decorators import login_required
from django.http import HttpResponse
from django.shortcuts import render
from django.views.decorators.http import require_POST
from articles.models import Article, Tag
@login_required
@require_POST
def render_article(request, article_pk):
template = "articles/article_detail.html"
article = Article.objects.get(pk=article_pk)
article.content = request.POST.get("content", article.content)
article.title = request.POST.get("title", article.title)
article.custom_css = request.POST.get("custom_css", article.custom_css)
has_code = request.POST.get("has_code")
if has_code is not None:
article.has_code = has_code == "true"
context = {"article": article}
tags = request.POST.get("tag_ids")
if tags:
tags = Tag.objects.filter(pk__in=map(int, tags.split(",")))
context["tags"] = tags
html = render(request, template, context=context)
return HttpResponse(html)