diff options
-rw-r--r-- | VERSION | 2 | ||||
-rw-r--r-- | app/views/projects/_form.html.haml | 2 | ||||
-rw-r--r-- | app/views/projects/_public.html.haml | 23 |
3 files changed, 15 insertions, 12 deletions
@@ -1 +1 @@ -4.3.0 +4.4.0.pre diff --git a/app/views/projects/_form.html.haml b/app/views/projects/_form.html.haml index 0b8fa4c..ddbfe39 100644 --- a/app/views/projects/_form.html.haml +++ b/app/views/projects/_form.html.haml @@ -39,7 +39,7 @@ = f.label :timeout, 'Timeout', class: 'control-label' .col-sm-10 = f.number_field :timeout, class: 'form-control', min: '0' - .light In seconds per command + .light In seconds %fieldset diff --git a/app/views/projects/_public.html.haml b/app/views/projects/_public.html.haml index bb46d51..f2e887c 100644 --- a/app/views/projects/_public.html.haml +++ b/app/views/projects/_public.html.haml @@ -1,14 +1,17 @@ = content_for :title do %h3.project-title Public projects -.projects - %table.table - %tr - %th ID - %th Name - %th Last build - %th Access - %th Builds - = render @projects -= paginate @projects +- if @projects.present? + .projects + %table.table + %tr + %th ID + %th Name + %th Last build + %th Access + %th Builds + = render @projects + = paginate @projects +- else + %h4 No public projects yet |