I've got problem with NoMethodError in Rails.

MODELS: issue:
class Issue < ActiveRecord::Base
attr_accessible :description, :estimate, :label, :status, :title, :project_id
belongs_to :project
validates :title, :presence => true
validates :estimate, :numericality => {:greater_than_or_equal_to => 0.1}
end
project:
class Project < ActiveRecord::Base
attr_accessible :description, :title
has_many :issues, :dependent => :destroy
accepts_nested_attributes_for :issues, :allow_destroy => :true
end
issue controller:
class IssuesController < ApplicationController
# GET /issues
# GET /issues.json
def index
@issues = Issue.all
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @issues }
end
end
# GET /issues/1
# GET /issues/1.json
def show
@issue = Issue.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render :json => @issue }
end
end
# GET /issues/new
# GET /issues/new.json
def new
@issue = Issue.new
#@issue = @project.issues.new(params[:issue])
respond_to do |format|
format.html # new.html.erb
format.json { render :json => @issue }
end
end
# GET /issues/1/edit
def edit
@issue = Issue.find(params[:id])
end
# POST /issues
# POST /issues.json
def create
@project = Project.find(params[:project_id])
@issue = @project.issues.create(params[:issue])
redirect_to project_path(@project)
#@issue = @project.issues.new(params[:issue])
#@issue = Issue.new(params[:issue])
# respond_to do |format|
# if @issue.save
# format.html { redirect_to @issue, :notice => 'Issue was successfully created.' }
# format.json { render :json => @issue, :status => :created, :location => @issue }
# else
# format.html { render :action => "new" }
# format.json { render :json => @issue.errors, :status => :unprocessable_entity }
# end
# end
end
# PUT /issues/1
# PUT /issues/1.json
def update
@issue = Issue.find(params[:id])
respond_to do |format|
if @issue.update_attributes(params[:issue])
format.html { redirect_to @issue, :notice => 'Issue was successfully updated.' }
format.json { head :no_content }
else
format.html { render :action => "edit" }
format.json { render :json => @issue.errors, :status => :unprocessable_entity }
end
end
end
# DELETE /issues/1
# DELETE /issues/1.json
def destroy
@project = Project.find(params[:project_id])
@issue = @project.issues.find(params[:id])
#@issue = Issue.find(params[:id])
@issue.destroy
redirect_to project_path(@project)
# respond_to do |format|
# format.html { redirect_to issues_url }
# format.json { head :no_content }
# end
end
end
project controller:
class ProjectsController < ApplicationController
# GET /projects
# GET /projects.json
def index
@projects = Project.all
respond_to do |format|
format.html # index.html.erb
format.json { render :json => @projects }
end
end
# GET /projects/1
# GET /projects/1.json
def show
@project = Project.find(params[:id])
respond_to do |format|
format.html # show.html.erb
format.json { render :json => @project }
end
end
# GET /projects/new
# GET /projects/new.json
def new
@project = Project.new
respond_to do |format|
format.html # new.html.erb
format.json { render :json => @project }
end
end
# GET /projects/1/edit
def edit
@project = Project.find(params[:id])
end
# POST /projects
# POST /projects.json
def create
@project = Project.new(params[:project])
respond_to do |format|
if @project.save
format.html { redirect_to @project, :notice => 'Project was successfully created.' }
format.json { render :json => @project, :status => :created, :location => @project }
else
format.html { render :action => "new" }
format.json { render :json => @project.errors, :status => :unprocessable_entity }
end
end
end
# PUT /projects/1
# PUT /projects/1.json
def update
@project = Project.find(params[:id])
respond_to do |format|
if @project.update_attributes(params[:project])
format.html { redirect_to @project, :notice => 'Project was successfully updated.' }
format.json { head :no_content }
else
format.html { render :action => "edit" }
format.json { render :json => @project.errors, :status => :unprocessable_entity }
end
end
end
# DELETE /projects/1
# DELETE /projects/1.json
def destroy
@project = Project.find(params[:id])
@project.destroy
respond_to do |format|
format.html { redirect_to projects_url }
format.json { head :no_content }
end
end
end
And it writes undefined method `model_name' for NilClass:Class when I want to show some project. Please, can you help me? Thanks