extends layout
block content
  form(method="POST" action="/admin/project")
    input(type="hidden" name="_id" value=project._id)
    .dashhead
      .dashhead-titles
        h6.dashhead-subtitle Project
        h2.dashhead-title New/Edit Project
      .btn-toolbar.dashhead-toolbar
        button.btn.btn-primary-outline Save Project
        //
          <div class="btn-toolbar-item input-with-icon">
          <input type="text" value="01/01/15 - 01/08/15" class="form-control" data-provide="datepicker">
          <span class="icon icon-calendar"></span>
          </div>
    hr.m-t
    section.content-header
      #field_name.field.row
        .col-md-12
          .form-group
            label Project Name
            input.form-control(type="text" name="name" placeholder="project name" value=project.name)
          // /.form-group
        // /.col
      // /.row
      #field_tagLine.field.row
        .col-md-12
          .form-group
            label Tag Line
            input.form-control(type="text" name="tag_line" placeholder="Tag Line" value=project.tag_line)
          // /.form-group
        // /.col
      // /.row
      #field_description.field.row
        .col-md-12
          .form-group
            label Description
            input.form-control(type="text" name="description" placeholder="Description" value=project.description)
          // /.form-group
        // /.col
      // /.row
      #field_logoURL.field.row
        .col-md-12
          .form-group
            label Logo URL
            input.form-control(type="text" name="logo_url" placeholder="logo URL" value=project.logo_url)
          // /.form-group
        // /.col
      // /.row
      #field_projectURL.field.row
        .col-md-12
          .form-group
            label Project URL
            input.form-control(type="text" name="project_url" placeholder="logo URL" value=project.project_url)
          // /.form-group
        // /.col
      // /.row


block scripts
  script(src="http://code.jquery.com/ui/1.10.4/jquery-ui.js")