Вывод данных в шаблоне - Python
Формулировка задачи:
Добрый вечер.
У меня есть две таблицы и связь между ними ManyToMany
пытаюсь вывести в шаблоне данные из таблицы "Contexttest"
Все выводит, но не хочет отображать содержимое поля " test_context_dancer", которое у нас и связано с другой таблицей.
Уже голова болит, а как сделать работающий вариант так и не нашел. Подскажите пожалуйста.
models.py
views.py
Шаблон
Результат
Листинг программы
- class Context_dancer_test(models.Model):
- class Meta:
- db_table = "тест Участник"
- context_dancer_name = models.CharField(
- 'тест Имя танцора',
- max_length = 200)
- def __unicode__(self):
- return self.context_dancer_name
- class Meta:
- verbose_name = 'Участник'
- verbose_name_plural = 'Участник'
- class Contexttest(models.Model):
- class Meta:
- db_table = "тест Конкурсы"
- test_context_dancer = models.ManyToManyField(Context_dancer_test)
- test_context_name = models.CharField(
- 'Название Конкурса',
- max_length = 200)
- def __unicode__(self):
- return self.test_context_name
- class Meta:
- verbose_name = 'тест Конкурс'
- verbose_name_plural = 'тест Конкурс'
Листинг программы
- from django.shortcuts import render_to_response, render
- from django.contrib import auth
- from testmanytomany.models import Context_dancer_test,Contexttest
- # Create your views here.
- def main(request):
- return render_to_response('1.html', {'contexts': Contexttest.objects.all(),'dancers': Context_dancer_test.objects.all(), 'user': auth.get_user(request) })
Листинг программы
- {% extends 'main.html' %}
- {% load staticfiles %}
- {% block turnir %}
- <div class="table-responsive">
- <table class="table table-bordered">
- <thead>
- <tr>
- <th>Танцор</th>
- <th>Конкурс</th>
- </tr>
- </thead>
- <tbody>
- {% for context in contexts %}
- <tr>
- <td>{% for context.test_context_dancer in context.test_context_dancer.all %}
- {{context.test_context_dancer.name}}
- {% endfor %}</td>
- <td>{{context.test_context_name}}</td>
- </tr>
- {% endfor %}
- </tbody>
- </table>
- </div>
- Я вижу этот когда загружен шаблон 1.html
- {% endblock %}
Спойлер
Решение задачи: «Вывод данных в шаблоне»
textual
Листинг программы
- {% for context in contexts %}
- {{context.test_context_name}}
- <br>
- {% for test_context_dancer in context.test_context_dancer.all %}
- {{ test_context_dancer }}
- <br>
- {% endfor %}
- <br>
- <br>
- {% endfor %}
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д