-
Notifications
You must be signed in to change notification settings - Fork 69
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #405 from coopdevs/develop
Release v1.7.0
- Loading branch information
Showing
25 changed files
with
272 additions
and
130 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,3 @@ | ||
#= require_self | ||
#= require datepicker | ||
#= require give_time | ||
#= require tags | ||
#= require mobile_app_libs | ||
|
This file was deleted.
Oops, something went wrong.
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,4 +1,3 @@ | ||
/* | ||
*= require jquery-ui | ||
*= require select2 | ||
*/ |
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
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,15 +1,8 @@ | ||
<p class="actions text-right"> | ||
<% if admin? || @inquiry.user == current_user %> | ||
<%= link_to edit_inquiry_path(@inquiry), class: "btn btn-warning" do %> | ||
<%= glyph :pencil %> | ||
<%= t "global.edit" %> | ||
<% if @inquiry.organization == current_organization %> | ||
<p class="actions text-right"> | ||
<% if admin? or @inquiry.user == current_user %> | ||
<%= render 'shared/post_actions', post: @inquiry %> | ||
<% end %> | ||
<%= link_to @inquiry, | ||
data: { method: :delete, confirm: "sure?" }, | ||
class: "btn btn-danger" do %> | ||
<%= glyph :trash %> | ||
<%= t "global.delete" %> | ||
<% end %> | ||
<% end %> | ||
</p> | ||
</p> | ||
<% end %> | ||
<%= render "shared/post", post: @inquiry %> |
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,22 +1,15 @@ | ||
<p class="actions text-right"> | ||
<% if admin? or @offer.user == current_user %> | ||
<%= link_to edit_offer_path(@offer), class: "btn btn-warning" do %> | ||
<%= glyph :pencil %> | ||
<%= t "global.edit" %> | ||
<% if @offer.organization == current_organization %> | ||
<p class="actions text-right"> | ||
<% if admin? or @offer.user == current_user %> | ||
<%= render 'shared/post_actions', post: @offer %> | ||
<% end %> | ||
<%= link_to @offer, | ||
data: { method: :DELETE, confirm: "sure?" }, | ||
class: "btn btn-danger" do %> | ||
<%= glyph :trash %> | ||
<%= t "global.delete" %> | ||
<% if current_user and @offer.user != current_user %> | ||
<%= link_to new_transfer_path(id: @offer.user.id, offer: @offer.id, destination_account_id: @destination_account.id), | ||
class: "btn btn-success" do %> | ||
<%= glyph :time %> | ||
<%= t ".give_time_for" %> | ||
<% end %> | ||
<% end %> | ||
<% end %> | ||
<% if current_user and @offer.user != current_user %> | ||
<%= link_to new_transfer_path(id: @offer.user.id, offer: @offer.id, destination_account_id: @destination_account.id), | ||
class: "btn btn-success" do %> | ||
<%= glyph :time %> | ||
<%= t ".give_time_for" %> | ||
<% end %> | ||
<% end %> | ||
</p> | ||
</p> | ||
<% end %> | ||
<%= render "shared/post", post: @offer %> |
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 |
---|---|---|
@@ -0,0 +1,9 @@ | ||
<%= link_to post, class: "btn btn-warning" do %> | ||
<%= glyph :pencil %> | ||
<%= t "global.edit" %> | ||
<% end %> | ||
|
||
<%= link_to post, data: { method: :delete, confirm: "sure?" }, class: "btn btn-danger" do %> | ||
<%= glyph :trash %> | ||
<%= t "global.delete" %> | ||
<% end %> |
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
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
Oops, something went wrong.