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
<html> | |
<head> | |
<style type="text/css" media="screen"> | |
table { | |
width: 100%; | |
table-layout: fixed; | |
border-collapse: collapse; | |
} | |
table th, table td { |
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
# Creates a Twitter Bootstrap nav item. | |
# | |
# @see http://twitter.github.com/bootstrap/components.html#navs | |
# | |
# @param [String optional] caption The caption of the item, optional if a block is passed | |
# @param [String optional] url The URL of the item | |
# @param [Hash] options | |
# @option options [Boolean] :brand (false) Set to true to define this item as the brand (this should be called directly on the `navbar` element itself as it also omits the surrounding `li` element) | |
# @option options [Boolean] :icon (nil) Pass the name of an icon (without the prefix `icon-`) to have an icon displayed to the left of the caption; see [available icons](http://twitter.github.com/bootstrap/base-css.html#icons) | |
# @return [String] HTML code |
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
/ ... | |
- f.inputs do | |
= f.hidden_field :lock_version | |
/ ... |