0.0
No commit activity in last 3 years
No release in over 3 years
This admin theme engine is made for using admin panel in backend. It is a administrator basic layout, but you will create a huge materials design as like form,button etc. using this theme.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies

Development

~> 1.13
~> 4.2.x
~> 10.0
~> 3.0
 Project Readme

College Admin Theme Gem Version

Welcome to College Admin theme. It is theme engine for making rails. It renders an administrator theme in your project.

Demo

Please visit this site to see it's demo

Installation

Add this line to your application's Gemfile:

gem 'college_admin'

And then execute:

$ bundle

Or install it yourself as:

$ gem install college_admin

Usage

From your controller just call this theme engine as: layout 'college_admin'

Change jquery version:
This template engine needs jquery2 version. So, you have to change jquery version.

Open application.js in app-> assets -> javascripts folder. Then, use require jquery2 instead of require jquery and restart in your system

For adding logo:

Step 1:

Make a file named _logo.html.erb in your app->views->shared folder. Write down this code in your _logo.html.erb:

<% content_for :logo do %>
<div class="logo">
  <a href="#" class="logo"><span>C<i class="zmdi zmdi-album"></i>llege</span></a>
</div>
<% end %>

You can alter the logo name and path

Step 2:

Make file named _extends_admin_layout.html.erb in your app->views->shared folder. Then, write down this code in your _extends_admin_layout.html.erb

<%= render partial: 'shared/logo' %>

Step 3:

Now, open in your all admin view files as example as index.html.erb, edit.html.erb, show.html.erb and new.html.erb, then write down given bellow code:

<%= render 'shared/extends_admin_layout' %>
For adding user profile:

Step 1:

Make a file named _profile.html.erb in your app->views->shared folder. Write down this code in your _profile.html.erb:

<% content_for :profile do %>
<li class="dropdown">
  <a href="" class="dropdown-toggle waves-effect waves-light profile" data-toggle="dropdown" aria-expanded="true">
  <%= image_tag 'users/avatar-1.jpg', class: 'img-circle' %>
  </a>
  <ul class="dropdown-menu">
   <li><a href="#"><i class="ti-user m-r-5"></i> Profile</a></li>
   <li><a href="#"><i class="ti-settings m-r-5"></i> Settings</a></li>
   <li><a href="#"><i class="ti-lock m-r-5"></i> Lock screen</a></li>
   <li><a href="#"><i class="ti-power-off m-r-5"></i> Logout</a></li>
 </ul>
</li>

<% end %>

Step 2:

Make file named _extends_admin_layout.html.erb in your app->views->shared folder. Then, write down this code in your _extends_admin_layout.html.erb

<%= render partial: 'shared/profile' %>

Step 3:

Now, open in your all admin view files as example as index.html.erb, edit.html.erb, show.html.erb and new.html.erb, then write down given bellow code:

<%= render 'shared/extends_admin_layout' %>
For adding search:

Step 1:

Make a file named _search.html.erb in your app->views->shared folder. Write down this code in your _search.html.erb:

<% content_for :search do  %>
<li>
            <form role="search" class="navbar-left app-search pull-left hidden-xs">
              <input type="text" placeholder="Search..." class="form-control">
              <a href=""><i class="fa fa-search"></i></a>
            </form>
          </li>
<% end %>

Step 2:

Make file named _extends_admin_layout.html.erb in your app->views->shared folder. Then, write down this code in your _extends_admin_layout.html.erb

<%= render partial: 'shared/search' %>

Step 3:

Now, open in your all admin view files as example as index.html.erb, edit.html.erb, show.html.erb and new.html.erb, then write down given bellow code:

<%= render 'shared/extends_admin_layout' %>
For adding navigation:

Step 1:

Make a file named _nav.html.erb in your app->views->shared folder. Write down this code in your _nav.html.erb:

<% content_for :nav do %>
  <!--For a single menu content-->
  <li class="has-submenu active">
    <a href="#"><i class="zmdi zmdi-view-dashboard"></i>Dashboard</a>
  </li>

<!--For a normal menu content-->
  <li class="has-submenu">
    <a href="#"><i class="zmdi zmdi-palette"></i>UI Kit</a>
    <ul class="submenu">
      <li><a href="#">Portlets</a></li>
      <li><a href="#">Checkboxs-Radios</a></li>
      <li><a href="#">Tabs</a></li>
      <li><a href="#">Modals</a></li>
    </ul>
  </li>
<% end %>

Step 2:

Make file named _extends_admin_layout.html.erb in your app->views->shared folder. Then, write down this code in your _extends_admin_layout.html.erb

<%= render partial: 'shared/nav' %>

Step 3:

Now, open in your all admin view files as example as index.html.erb, edit.html.erb, show.html.erb and new.html.erb, then write down given bellow code:

<%= render 'shared/extends_admin_layout' %>
For adding footer:

Step 1:

Make a file named _footer.html.erb in your app->views->shared folder. Write down this code in your _footer.html.erb:

<% content_for :footer do %>
  <footer class="footer text-right">
    <div class="container">
      <div class="row">
        <div class="col-xs-6">
          <%= Time.now.year %> &copy; Admin
        </div>
      </div>
    </div>
  </footer>
<% end %>

Step 2:

Make file named _extends_admin_layout.html.erb in your app->views->shared folder. Then, write down this code in your _extends_admin_layout.html.erb

<%= render partial: 'shared/footer' %>

Step 3:

Now, open in your all admin view files as example as index.html.erb, edit.html.erb, show.html.erb and new.html.erb, then write down given bellow code:

<%= render 'shared/extends_admin_layout' %>

Contributing

Bug reports and pull requests are welcome on GitHub.This project is intended to be a safe, welcoming space for collaboration, and contributors are expected to adhere to the Contributor Covenant code of conduct.

License

The gem is available as open source under the terms of the MIT License.