0

1 つのアプリと 1 つのビューに 2 つのモデルがあります。私は現在、1つのモデルから完全に問題なく情報を引き出しています。ただし、同じアプリから別のモデルを取得して、両方を同じページに出力したいと考えています。

ページのアイデアは、ニュース ハブであるため、(あるモデルからの) さまざまな種類のニュース投稿と、別のモデルからのさまざまな種類の投稿をプルすることです。

私は Django にかなり慣れていないので、簡単に始めてください。:)とにかくここにコードがあります:

//ビュー

def news_home(request):

    page_context = details(request, path="news-hub", only_context=True)

    recent_posts = NewsPost.objects.filter(live=True, case_study=False).order_by("-posted")[:5]

    recent_posts_pages = Paginator(recent_posts, 100)

    current_page = request.GET.get("page", 1)

    this_page = recent_posts_pages.page(current_page)

    notes = BriefingNote.objects.filter(live=True).order_by("-posted")

    news_categories = NewsCategory.objects.all()




    news_context = {
        "recent_posts": this_page.object_list,
        "news_categories": news_categories,
        "pages": recent_posts_pages,
        "note": notes,


    }

    context = dict(page_context)
    context.update(news_context)


    return render_to_response('news_hub_REDESIGN.html', context,  context_instance=RequestContext(request))

//モデル 1

class BriefingNote(models.Model):
    title = models.CharField(max_length=300)
    thumbnail = models.ImageField(upload_to='images/briefing_notes', blank=True)
    file = models.FileField(upload_to='files/briefing_notes')
    live = models.BooleanField(help_text="The post will only show on the frontend if the 'live' box is checked")
    categories = models.ManyToManyField("NewsCategory")

    # Dates
    posted = models.DateTimeField(auto_now_add=True)
    updated = models.DateTimeField(auto_now=True)

    def __unicode__(self):
        return u"%s" % self.title

// モデル 2

class NewsPost(models.Model):
    title = models.CharField(max_length=400)
    slug = models.SlugField(help_text="This will form the URL of the post")

    summary = models.TextField(help_text="To be used on the listings pages. Any formatting here will be ignored on the listings page.")
    post = models.TextField(blank=True)
    #TO BE REMOVED????
    thumbnail = models.ImageField(help_text="To be displayed on listings pages", upload_to="images/news", blank=True)
    remove_thumbnail = models.BooleanField()

次のように、フロントエンドでコンテンツを出力しています。

{% for post in recent_posts %}





                    <div class='news_first'>

                        <img class="news_thumb" src="/media/{% if post.article_type %}{{post.article_type.image}}{% endif %}{% if post.news_type %}{{post.news_type.image}}{% endif%}" alt="">
                        <h3><a href='{{post.get_absolute_url}}'>{% if post.article_type.title %}{{post.title}}{% endif %} <span>{{post.posted|date:"d/m/y"}}</span></a></h3>
                        <p class='news_summary'>
                            {% if post.thumbnail %}<a href='{{post.get_absolute_url}}'><img src='{% thumbnail post.thumbnail 120x100 crop upscale %}' alt='{{post.title}}' class='news_thumbnail'/></a>{% endif %}{{post.summary|striptags}} <a href='{{post.get_absolute_url}}'>Read full story &raquo;</a>
                        </p>
                        <div class='clearboth'></div>
                    </div>




            {% endfor %}

おそらく、同じ forloop 内で両方を出力できると考えていましたが、-posted で並べ替える必要があります。だから私はこれが物事を台無しにする可能性があると思った.

さらに情報が必要な場合は、お知らせください。

前もって感謝します。

4

1 に答える 1

1

私は今問題を解決しました。

news_hub = list(chain(notes, recent_posts))

news_hub = sorted(
    chain(notes, recent_posts),
    key = attrgetter('posted'), reverse=True)[:10]
于 2012-07-16T12:04:28.053 に答える