Commit bdd7980d7700a0c5d24e939717ab995391319978

Authored by Dmitriy Zaporozhets
2 parents 76294699 e2b4fe35

Merge pull request #94 from SaitoWu/gitosis

fix project new link
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
app/views/projects/_form.html.haml
@@ -19,13 +19,13 @@ @@ -19,13 +19,13 @@
19 %tr 19 %tr
20 %td 20 %td
21 .left= f.label :path 21 .left= f.label :path
22 - %cite.right git@yourserver: 22 + %cite.right= "git@#{GITOSIS["host"]}:"
23 %td 23 %td
24 = f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record? 24 = f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record?
25 %tr 25 %tr
26 %td 26 %td
27 .left= f.label :code 27 .left= f.label :code
28 - %cite.right http://yourserver/ 28 + %cite.right= "http://#{GITOSIS["host"]}/"
29 %td= f.text_field :code, :placeholder => "example" 29 %td= f.text_field :code, :placeholder => "example"
30 30
31 %tr 31 %tr