extend templates/layout.pug block content .container .center h1 Library .row .col.s12 form.row(action="/library/add", method="post") .col.s12.input-field input#name(type="text", name="name", value=artifact.name) label(for="name") Artifact Name .col.s12.input-field input#url(type="text", name="url", value=artifact.url) label(for="url") Artifact Url if artifact.id == null .col.s12.input-field input#version(type="text", name="version", value=artifact.version) label(for="version") First Version Number .col.s12.input-field p label input(type="radio", name="visibility", value="public") span Public br small Anyone can see and add translations p label input(type="radio", name="visibility", value="permissioned") span Permissioned br small Anyone can see but restrict translations p label input(type="radio", name="visibility", value="private") span Private br small Restrict who can see and translate project .col.s12 button.btn.black(type="submit") add artifact