forked from fatfreecrm/fat_free_crm
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
tried to integrate new date fields into view but date select popup is…
… not displayed added abbreviation values to settings.yml
- Loading branch information
1 parent
96cdd22
commit 93299df
Showing
6 changed files
with
51 additions
and
9 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,11 +1,24 @@ | ||
.section | ||
%table{ :width => 500, :cellpadding => 0, :cellspacing => 0 } | ||
%tr | ||
%td{ :valign => :top } | ||
%td{ :colspan => 3, :valign => :top } | ||
.label.top.req Name: | ||
= f.text_field :name, :style => "width:324px" | ||
%tr | ||
%td{ :valign => :top } | ||
%td{ :colspan => 3, :valign => :top } | ||
.label.top.req Abbreviation | ||
%tr | ||
%td | ||
.label Start Date: | ||
= f.text_field :start_date, :value => f.object.start_date ? f.object.start_date.to_s(:mmddyyyy) : "", :style => "width:110px", :autocomplete => :off | ||
%td | ||
.label End Date: | ||
= f.text_field :end_date, :value => f.object.end_date ? f.object.end_date.to_s(:mmddyyyy) : "", :style => "width:110px", :autocomplete => :off | ||
%td | ||
.label Deadline: | ||
= f.text_field :deadline, :value => f.object.deadline ? f.object.deadline.to_s(:mmddyyyy) : "", :style => "width:110px", :autocomplete => :off | ||
%tr | ||
%td{ :colspan => 3, :valign => :top } | ||
.label.top.req Assigned to: | ||
= collection_select :proposal, :assigned_to, @users, :id, :full_name, { :include_blank => "Myself" }, { :style => "width:160px" } | ||
= hook(:proposal_top_section_bottom, self, :f => f) |
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