Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
X Editable | 6,464 | 4 months ago | 622 | mit | JavaScript | |||||
In-place editing with Twitter Bootstrap, jQuery UI or pure jQuery | ||||||||||
Bootstra.386 | 6,247 | 4 months ago | 1 | May 09, 2018 | 60 | apache-2.0 | HTML | |||
A vintage 1980s DOS inspired Twitter Bootstrap theme | ||||||||||
Jquery Ui Bootstrap | 5,486 | 4 | 5 years ago | March 15, 2015 | 49 | HTML | ||||
A jQuery UI theme based on Twitter Bootstrap | ||||||||||
Twitter Bootstrap Rails | 4,518 | 19,179 | 86 | a year ago | 44 | February 06, 2017 | 58 | HTML | ||
Twitter Bootstrap for Rails 6.0, Rails 5 - Rails 4.x Asset Pipeline | ||||||||||
Bootstrap Tour | 4,410 | 108 | 2 | a year ago | 12 | October 03, 2017 | 186 | mit | CoffeeScript | |
Quick and easy product tours with Twitter Bootstrap Popovers | ||||||||||
Ace | 3,561 | 3 years ago | 34 | other | HTML | |||||
Twitter bootstrap 3 admin template | ||||||||||
Bootstrap Multiselect | 3,559 | 82 | 21 | 8 months ago | 4 | August 01, 2021 | 290 | other | HTML | |
JQuery multiselect plugin based on Twitter Bootstrap. | ||||||||||
Bootmetro | 2,244 | 1 | 5 years ago | May 15, 2013 | 38 | other | HTML | |||
Simple and complete web UI framework to create web apps with Windows 8 Metro user interface, based on Bootstrap 2. | ||||||||||
Geo Bootstrap | 1,934 | 7 years ago | February 22, 2021 | 33 | mit | HTML | ||||
A timeless Twitter Bootstrap theme built for the modern web. | ||||||||||
Bootstrap 3 Typeahead | 1,673 | 114 | 8 | 2 years ago | 3 | September 27, 2016 | 180 | JavaScript | ||
The Typeahead plugin from Twitter's Bootstrap 2 ready to use with Bootstrap 3 and Bootstrap 4 |
Sample administrator panel using CodeIgniter 2.1.2 with Mysql and Twitter Bootstrap.
READ IT FIRST!!!: Guys, i've made this project with the idea to help the community, the idea was to receive suggestions and grow the project along with the community.
Unfortunately (or not) one week after i did this project, i started to work with Ruby and Rails, and kind of did left the php and this project as well. It's too sad check the project one year after its creation and see lots of issues without a single pull request...
Issues are a great opportunity to join and contribute to open source as well help the project to grow. There are some issues with the fix in the comment but no pull requests..
So please... make yourself comfortable to help!
CREATE TABLE `ci_cookies` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`cookie_id` varchar(255) DEFAULT NULL,
`netid` varchar(255) DEFAULT NULL,
`ip_address` varchar(255) DEFAULT NULL,
`user_agent` varchar(255) DEFAULT NULL,
`orig_page_requested` varchar(120) DEFAULT NULL,
`php_session_id` varchar(40) DEFAULT NULL,
`created_at` datetime DEFAULT NULL,
`updated_at` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `ci_sessions` (
`session_id` varchar(40) NOT NULL DEFAULT '0',
`ip_address` varchar(45) NOT NULL DEFAULT '0',
`user_agent` varchar(120) NOT NULL,
`last_activity` int(10) unsigned NOT NULL DEFAULT '0',
`user_data` text NOT NULL,
PRIMARY KEY (`session_id`),
KEY `last_activity_idx` (`last_activity`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
CREATE TABLE `manufacturers` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(50) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `membership` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`first_name` varchar(255) DEFAULT NULL,
`last_name` varchar(255) DEFAULT NULL,
`email_addres` varchar(255) DEFAULT NULL,
`user_name` varchar(255) DEFAULT NULL,
`pass_word` varchar(32) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
CREATE TABLE `products` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`description` varchar(40) DEFAULT NULL,
`stock` double DEFAULT NULL,
`cost_price` double DEFAULT NULL,
`sell_price` double DEFAULT NULL,
`manufacture_id` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;