diff options
author | Sytse Sijbrandij <sytse@dosire.com> | 2013-09-26 15:24:32 +0200 |
---|---|---|
committer | Sytse Sijbrandij <sytses@gmail.com> | 2014-06-13 17:04:23 +0200 |
commit | 370065df9028e5eebf280cda432ead952c9b7002 (patch) | |
tree | e3408495eb45f33e973114e7b3d2cf98de98e3f1 | |
parent | 39df52e010c1202493e980c3a84ea755179e2aff (diff) | |
download | gitlab-ci-370065df9028e5eebf280cda432ead952c9b7002.tar.gz |
Make difference between registration and runner token clear.
Conflicts:
app/views/runners/index.html.haml
-rw-r--r-- | app/views/runners/index.html.haml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/app/views/runners/index.html.haml b/app/views/runners/index.html.haml new file mode 100644 index 0000000..6d0a006 --- /dev/null +++ b/app/views/runners/index.html.haml @@ -0,0 +1,28 @@ += content_for :title do + %h3.project-title + Runners + +.alert.alert-info + %strong To register new runner you should the following registration token + %code #{GitlabCi::RunnersToken} + +%p + Runner is a process which run a build. + You can setup as much runners as you need. + %br + Runners can be placed on separate users, servers, even on your local machine + %br + +%table.table + %tr + %th ID + %th Runner token + %th Description + %th Last build + %th Projects + %th Builds Stats + %th Registered + %th + + = render @runners + = paginate @runners |