-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Removing the jquery-datatables dependency
- Loading branch information
1 parent
cc8679f
commit 60e0b64
Showing
6 changed files
with
32 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,31 +1,32 @@ | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<title>Kenui</title> | ||
<%= yield :scripts %> | ||
<%= stylesheet_link_tag 'application', :media => 'all' %> | ||
<%= javascript_include_tag 'application' %> | ||
<%= csrf_meta_tags %> | ||
</head> | ||
<div class="container-fluid"> | ||
<%- # :alert used by devise -%> | ||
<% [:error, :alert].each do |key| %> | ||
<% if flash[key] %> | ||
<head> | ||
<title>Kenui</title> | ||
<%= yield :scripts %> | ||
<%= stylesheet_link_tag 'application', :media => 'all' %> | ||
<%= javascript_include_tag 'application' %> | ||
<%= csrf_meta_tags %> | ||
</head> | ||
<body> | ||
<div class="container"> | ||
<%- # :alert used by devise -%> | ||
<% [:error, :alert].each do |key| %> | ||
<% if flash[key] %> | ||
<div class="row"> | ||
<div class="col-md-10 col-md-offset-2"> | ||
<div class="alert alert-error"><%= flash[key] %></div> | ||
</div> | ||
</div> | ||
<% end %> | ||
<% end %> | ||
<% if flash[:notice] %> | ||
<div class="row"> | ||
<div class="col-md-10 col-md-offset-2"> | ||
<div class="alert alert-error"><%= flash[key] %></div> | ||
<div class="alert alert-info"><%= flash[:notice] %></div> | ||
</div> | ||
</div> | ||
<% end %> | ||
<% end %> | ||
<% if flash[:notice] %> | ||
<div class="row"> | ||
<div class="col-md-10 col-md-offset-2"> | ||
<div class="alert alert-info"><%= flash[:notice] %></div> | ||
</div> | ||
</div> | ||
<% end %> | ||
<%= yield %> | ||
</div> | ||
</body> | ||
<%= yield %> | ||
</div> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters