我在 wearquests 模型中有一个范围:
scope :notcompl, where("statuscode_id != ?", Statuscode.last.id)
如果穿着任务不完整,我只想在穿着任务显示页面中显示编辑按钮。我试过这个并得到未定义的方法:
<% if @worequest.notcompl? %>
<= link_to 'Edit', edit_worequest_path(@worequest), :class => 'btn btn-success' %>
<% end %>
什么是正确的语法?
谢谢您的帮助!