Django показать дополнительный контент в представлении классов на основе моделей ForeignKey - PullRequest
0 голосов
/ 18 января 2020

Я пытаюсь добавить дополнительный контент в представление на основе классов Djangos к шаблону

У меня есть некоторые модели, подобные этой

class District(models.Model):
    district = models.CharField(max_length=255, null=False, unique=False, blank=True)

    def __str__(self):
        return self.district


class Street(models.Model):
    street_name = models.CharField(max_length=255, null=False, unique=False, blank=True)
    district = models.ForeignKey(District, verbose_name=_('district'), on_delete=models.CASCADE, null=True, blank=True)
    zone = models.IntegerField(blank=True, null=True)

    def __str__(self):
        return self.street_name


class Article(models.Model):
    user = models.ForeignKey(settings.AUTH_USER_MODEL, null=True, blank=True, related_name="author", on_delete=models.SET_NULL)
    timestamp = models.DateTimeField(auto_now_add=True)   
    status = models.CharField(max_length=1, choices=STATUS, default=CREATED)
    comment = models.CharField(max_length=255, null=True, unique=False, blank=True)
    name = models.CharField(max_length=255, null=True, unique=False)
    street = models.ForeignKey(Street, verbose_name=_('street'), on_delete=models.CASCADE, null=True, blank=True)


class ArticlesListView(LoginRequiredMixin, PermissionRequiredMixin,ListView):
    model = Article
    paginate_by = 50
    context_object_name = "articles"
    permission_required = 'is_staff'

    def get_context_data(self, *args, **kwargs):
        context = super().get_context_data(*args, **kwargs)
        context['Filter_name'] = Article.objects.order_by().values('name').distinct()
        context['Filter_user'] = Article.objects.order_by().values('user').distinct()
        return context


    def get_queryset(self, **kwargs):
        return Article.objects.all()

И поздно в шаблоне

{% for f in Filter_name %}
  <ul>
    <li>{{f.name}}</li>
  </ul>
{% endfor %}

Как отобразить список названий районов и список авторов в шаблоне с ForeignKey?

1 Ответ

0 голосов
/ 18 января 2020

U может попробовать что-то вроде , что

{% for item in model_1.foreign_model_set.all %}
    <h1>{{ item }}</h1>
{% endfor %}
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...