在django中一次保存多个数据,如复选框

时间:2015-11-20 15:52:10

标签: python html django

我在ang django项目onlinevoting工作。在我的模板中,我使用 循环以循环所有位置以及候选者。我在一个属性中一次保存许多数据时遇到问题,例如在我的模型中:

class Vote(models.Model):
candidate_id = models.ForeignKey('Candidate', blank=True, null=True)
election_id = models.ForeignKey('Election', blank=True, null=True)
user_id = models.ForeignKey('User', blank=True, null=True)

def __str__(self):
    return "%s %s" % (user_id.first_name, election_id.year)

在我的模板中投票:

<form method="POST" class="form-horizontal" role="form">

                              {% if success %}
                                <div class="alert alert-success">
                                  <a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>
                                  <strong>Success!</strong> {{ success }}
                                </div>
                              {% endif %}

                              {% if exist %}
                              <div class="alert alert-warning">
                                <a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>
                                <strong>Warning!</strong> {{ exist }}
                              </div>
                              {% endif %}

                              {% csrf_token %}
                                  <div class="form-group ">
                                  {% for position in positions %}
                                      <label for="cname" class="control-label col-lg-2">{{ position }}<span class="required">*</span></label>

                                      {% for candidate in candidates %}
                                        {% if position.pk == candidate.position_id.pk %}
                                          <div class="col-lg-3">
                                              <input type="checkbox" name="candidate_id" value="{{ candidate.pk }}">{{ candidate }}<br>
                                          </div>
                                        {% endif %}
                                      {% endfor %}

                                  </div>
                                  {% endfor %}
                                          <button class="btn btn-primary" type="submit">Save</button>
                                          <button class="btn btn-default" type="button">Cancel</button>
                                      </div>
                                  </div>
                              </form>

如何添加/保存所有候选人?因为用户可以选择多个候选人,我想立即保存它们。这是我的views.py

def vote(request):

if request.user.is_authenticated and request.user.is_admin:
    candidates = Candidate.objects.all()
    election = Election.objects.all().filter(is_active=True)
    positions = Position.objects.all()
    user = get_object_or_404(User, pk=request.user.pk)

    try:
        if request.method == 'POST':
            candidate_id = request.POST['candidate_id']

            vote = Vote.objects.create(candidate_id=candidate_id)
            vote.save()

            vote.election_id = election
            vote.save()

            vote.user_id = user
            vote.save()

        else:
            form = VoteForm()
            return render(request,'system/vote.html', {'form':form, 'candidates': candidates,
                                                        'election': election, 'user': user,
                                                        'positions': positions})

    except:
        exist = "ERROR!"
        form = VoteForm()
        return render(request,'system/vote.html', {'form':form, 'exist': exist})

elif not request.user.is_authenticated:
    return redirect('system.views.user_login')

0 个答案:

没有答案