Commit bdd7980d7700a0c5d24e939717ab995391319978
Exists in
master
and in
4 other branches
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 | 19 | %tr |
20 | 20 | %td |
21 | 21 | .left= f.label :path |
22 | - %cite.right git@yourserver: | |
22 | + %cite.right= "git@#{GITOSIS["host"]}:" | |
23 | 23 | %td |
24 | 24 | = f.text_field :path, :placeholder => "example_project", :disabled => !@project.new_record? |
25 | 25 | %tr |
26 | 26 | %td |
27 | 27 | .left= f.label :code |
28 | - %cite.right http://yourserver/ | |
28 | + %cite.right= "http://#{GITOSIS["host"]}/" | |
29 | 29 | %td= f.text_field :code, :placeholder => "example" |
30 | 30 | |
31 | 31 | %tr | ... | ... |