This file contains hidden or 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
| <% provide(:page_title, "Roommate Friendly Rental Listings") %> | |
| <% provide(:page_heading, "Roommate Friendly Rental Listings" ) %> | |
| <% provide(:page_heading_sub, 'Take a look at the listings available and manage the ones you have posted.') %> |
This file contains hidden or 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
| <div class='row-fluid' style='background-color: rgb(124,187,0); color:white;'> | |
| <h2 style='margin-left: 10px;margin-bottom: 4px;'>Listing Description <span class="label label-primary">Public</span></h2> | |
| <p style="margin-left: 10px;"> | |
| Describe your listing so others would want to live there! The more details the better. | |
| This part of your listing is public and can be seen by everyone. It is also indexed by search engines. | |
| </p> | |
| </div> |
This file contains hidden or 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
| <% provide(:page_title, "Title") %> | |
| <% provide(:page_heading, "Heading" ) %> | |
| <% provide(:page_heading_sub, 'Sub description') %> |
This file contains hidden or 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
| <div class="row-fluid"> | |
| <article class="span10"> | |
| <!-- new widget --> | |
| <div class="jarviswidget" id="widget-id-4"> | |
| <header> | |
| <h2>Title</h2> | |
| </header> | |
| <!-- wrap div --> | |
| <div> |
This file contains hidden or 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
| <%= simple_form_for(@listing) do |f| %> | |
| <%= f.error_notification %> | |
| <div class="form-inputs"> | |
| <%= f.input :listing_title, hint: '<strong>Pick a descriptive title to really sell your place!</strong>', input_html: { class: 'span7' }, label: 'Listing Title' %> | |
| <%= f.input :listing_description, as: :text, input_html: { class: 'span7' } %> | |
| <%= f.input :listing_roomate_count, collection: 1..5, label: 'How Many Roomates?', prompt: 'Choose' %> | |
| <!-- This is a default value of USA and can be switched later when expanding more countries --> | |
| <%= f.hidden_field :country_id, value: '236' %> | |
| <%= f.input :state_id, collection: @states, label_method: :name, value_method: :id, prompt: 'State' %> |
This file contains hidden or 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
| <% provide(:page_title, "Editing #{@question_category.name}") %> | |
| <% provide(:page_heading, "Editing #{@question_category.name}" ) %> | |
| <% provide(:page_heading_sub, 'Manage the attributes of this category') %> | |
| <article class="span12 sortable-grid ui-sortable"> | |
| <!-- new widget --> | |
| <div class="jarviswidget jarviswidget-sortable" id="widget-id-1" role="widget"> | |
| <header role="heading"> | |
| <h2>Animated bars</h2> |
This file contains hidden or 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
| <%= simple_form_for(@question_category) do |f| %> | |
| <%= f.error_notification %> | |
| <div class="form-inputs"> | |
| <%= f.input :name, input_html: { class: 'span7' }, label: 'Category Name' %> | |
| <div class="form-actions"> | |
| <%= f.button :submit , :class => 'btn medium btn-primary', value: 'Post It!' %> | |
| </div> | |
| </div> | |
| <% end %> |
This file contains hidden or 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
| <div class="row-fluid"> | |
| <div class="span12"> | |
| <table id="table_bug_report" class="table table-striped table-bordered table-hover"> | |
| <thead> | |
| <tr> | |
| <th>Account Name</th> | |
| <th>Contact Name</th> | |
| <th>Contact Email</th> | |
| <th></th> | |
| </tr> |
This file contains hidden or 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
| <%= link_to '<i class=" cus-cancel"></i> Delete'.html_safe, questionnaire_path(@questionnaire), method: :delete, data: {confirm: 'Are you sure?'} %> |
This file contains hidden or 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
| git checkout -b experimental origin/experimental |