1. <small id='FwuBL'></small><noframes id='FwuBL'>

      <i id='FwuBL'><tr id='FwuBL'><dt id='FwuBL'><q id='FwuBL'><span id='FwuBL'><b id='FwuBL'><form id='FwuBL'><ins id='FwuBL'></ins><ul id='FwuBL'></ul><sub id='FwuBL'></sub></form><legend id='FwuBL'></legend><bdo id='FwuBL'><pre id='FwuBL'><center id='FwuBL'></center></pre></bdo></b><th id='FwuBL'></th></span></q></dt></tr></i><div id='FwuBL'><tfoot id='FwuBL'></tfoot><dl id='FwuBL'><fieldset id='FwuBL'></fieldset></dl></div>
        <bdo id='FwuBL'></bdo><ul id='FwuBL'></ul>
      <tfoot id='FwuBL'></tfoot>
      <legend id='FwuBL'><style id='FwuBL'><dir id='FwuBL'><q id='FwuBL'></q></dir></style></legend>
    2. 如何在 Django 1.6 应用程序中实现降价?

      时间:2023-11-08

        <legend id='JKUni'><style id='JKUni'><dir id='JKUni'><q id='JKUni'></q></dir></style></legend>
      1. <tfoot id='JKUni'></tfoot>
        • <bdo id='JKUni'></bdo><ul id='JKUni'></ul>
            <tbody id='JKUni'></tbody>
          <i id='JKUni'><tr id='JKUni'><dt id='JKUni'><q id='JKUni'><span id='JKUni'><b id='JKUni'><form id='JKUni'><ins id='JKUni'></ins><ul id='JKUni'></ul><sub id='JKUni'></sub></form><legend id='JKUni'></legend><bdo id='JKUni'><pre id='JKUni'><center id='JKUni'></center></pre></bdo></b><th id='JKUni'></th></span></q></dt></tr></i><div id='JKUni'><tfoot id='JKUni'></tfoot><dl id='JKUni'><fieldset id='JKUni'></fieldset></dl></div>
          • <small id='JKUni'></small><noframes id='JKUni'>

                本文介绍了如何在 Django 1.6 应用程序中实现降价?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                问题描述

                我在 models.py 中有一个文本字段,我可以在其中使用管理员输入博客的文本内容.

                I have a text field in models.py where I can input text content for a blog using the admin.

                我希望能够以 markdown 格式编写此文本字段的内容,但我使用的是 Django 1.6,并且不再支持 django.contrib.markup.

                I want to be able to write the content for this text field in markdown format, but I'm using Django 1.6 and django.contrib.markup is not supported anymore.

                我在 Django 1.6 中找不到任何有教程并通过将 markdown 添加到文本字段的地方.有人可以查看我的 .py 文件并帮助我在我的应用中实现降价.

                I can't find anywhere that has a tutorial and runs through adding markdown to a text field in Django 1.6. Can someone look at my .py files and help me implement markdown to my app.

                from django.db import models
                
                # Create your models here.
                class Post(models.Model):
                    title = models.CharField(max_length=200)
                    pub_date = models.DateTimeField()
                    text = models.TextField()
                    tags = models.CharField(max_length=80, blank=True)
                    published = models.BooleanField(default=True)
                

                admin.py

                from django.contrib import admin
                from blogengine.models import Post
                
                class PostAdmin(admin.ModelAdmin):
                    # fields display on change list
                    list_display = ['title', 'text']
                    # fields to filter the change list with
                    save_on_top = True
                    # fields to search in change list
                    search_fields = ['title', 'text']
                    # enable the date drill down on change list
                    date_hierarchy = 'pub_date'
                
                admin.site.register(Post, PostAdmin)
                

                index.html

                <html>
                    <head>
                        <title>My Django Blog</title>
                    </head>
                    <body>
                        {% for post in post %}
                        <h1>{{ post.title }}</h1>
                        <h3>{{ post.pub_date }}</h3>
                        {{ post.text }}
                        {{ post.tags }}
                        {% endfor %}
                    </body>
                </html>
                

                推荐答案

                感谢您的回答和建议,但我决定使用 markdown-deux.

                Thank you for your answers and suggestions, but I've decided to use markdown-deux.

                我是这样做的:

                pip install django-markdown-deux

                然后我做了 pip freeze >requirements.txt 以确保我的需求文件已更新.

                Then I did pip freeze > requirements.txt to make sure that my requirements file was updated.

                然后我将markdown_deux"添加到 INSTALLED_APPS 列表中:

                Then I added 'markdown_deux' to the list of INSTALLED_APPS:

                INSTALLED_APPS = (
                    ...
                    'markdown_deux',
                    ...
                )
                

                然后我将模板 index.html 更改为:

                Then I changed my template index.html to:

                {% load markdown_deux_tags %}
                
                <html>
                    <head>
                        <title>My Django Blog</title>
                    </head>
                    <body>
                        {% for post in post %}
                        <h1>{{ post.title }}</h1>
                        <h3>{{ post.pub_date }}</h3>
                        {{ post.text|markdown }}
                        {{ post.tags }}
                        {% endfor %}
                    </body>
                </html>
                

                这篇关于如何在 Django 1.6 应用程序中实现降价?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                上一篇:可在字段集中使用的有序 ManyToManyField 下一篇:在 Django admin 中将外键列显示为详细对象的链接

                相关文章

                <small id='L8EQd'></small><noframes id='L8EQd'>

                  1. <i id='L8EQd'><tr id='L8EQd'><dt id='L8EQd'><q id='L8EQd'><span id='L8EQd'><b id='L8EQd'><form id='L8EQd'><ins id='L8EQd'></ins><ul id='L8EQd'></ul><sub id='L8EQd'></sub></form><legend id='L8EQd'></legend><bdo id='L8EQd'><pre id='L8EQd'><center id='L8EQd'></center></pre></bdo></b><th id='L8EQd'></th></span></q></dt></tr></i><div id='L8EQd'><tfoot id='L8EQd'></tfoot><dl id='L8EQd'><fieldset id='L8EQd'></fieldset></dl></div>
                      <bdo id='L8EQd'></bdo><ul id='L8EQd'></ul>

                    <legend id='L8EQd'><style id='L8EQd'><dir id='L8EQd'><q id='L8EQd'></q></dir></style></legend><tfoot id='L8EQd'></tfoot>