> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dirtview.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Submissions vs. Templates

> A template is the blank. A submission is a filled-in copy. Editing the template never changes forms already submitted.

export const Video = ({id, title, runtime, url}) => {
  const meta = VIDEOS[id] || ({});
  const label = title || meta.title || "Tutorial video";
  const length = runtime || meta.runtime || "";
  const track = meta.track || "";
  const src = toEmbedUrl(url || meta.url);
  const frame = {
    position: "relative",
    width: "100%",
    paddingTop: "56.25%",
    borderRadius: "10px",
    overflow: "hidden",
    background: "rgba(127,127,127,0.09)",
    border: src ? "1px solid rgba(127,127,127,0.24)" : "1px dashed rgba(127,127,127,0.42)"
  };
  const fill = {
    position: "absolute",
    inset: 0,
    width: "100%",
    height: "100%",
    border: 0
  };
  const center = {
    position: "absolute",
    inset: 0,
    display: "flex",
    flexDirection: "column",
    alignItems: "center",
    justifyContent: "center",
    gap: "10px",
    padding: "24px",
    textAlign: "center"
  };
  const idBadge = {
    fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace",
    fontSize: "12px",
    letterSpacing: "0.06em",
    padding: "2px 8px",
    borderRadius: "4px",
    background: "rgba(184,82,40,0.14)",
    color: "#B85228",
    fontWeight: 600
  };
  const caption = {
    display: "flex",
    flexWrap: "wrap",
    alignItems: "center",
    gap: "8px",
    marginTop: "8px",
    fontSize: "13px",
    opacity: 0.66,
    fontFamily: "ui-monospace, SFMono-Regular, Menlo, monospace"
  };
  return <div style={{
    margin: "0 0 28px"
  }}>
      <div style={frame}>
        {src ? <iframe style={fill} src={src} title={label} frameBorder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; fullscreen; picture-in-picture" allowFullScreen /> : <div style={center}>
            <svg width="44" height="44" viewBox="0 0 44 44" fill="none" aria-hidden="true">
              <circle cx="22" cy="22" r="20" stroke="currentColor" strokeOpacity="0.28" strokeWidth="2" />
              <path d="M18 15.5L29 22L18 28.5V15.5Z" fill="currentColor" fillOpacity="0.32" />
            </svg>
            <div style={{
    fontWeight: 600,
    fontSize: "15px",
    maxWidth: "36ch",
    lineHeight: 1.35
  }}>{label}</div>
            <div style={{
    fontSize: "13px",
    opacity: 0.6
  }}>
              Video coming soon{length ? " · " + length : ""}
            </div>
          </div>}
      </div>
      <div style={caption}>
        {id ? <span style={idBadge}>{id}</span> : null}
        {length ? <span>{length}</span> : null}
        {track ? <span>{track} track</span> : null}
      </div>
    </div>;
};

<Video id="40.1" />

<Note>
  **The short version.** A **template** is the blank form. A **submission** is one filled-in copy of it. Two tabs, two different things.
</Note>

## Think of a pad of paper forms

<CardGroup cols={2}>
  <Card title="Templates" icon="file-lines">
    The blank pad in the trailer. Built once, at a desk, by the office.

    → [Building a template](/forms/build-a-template)
  </Card>

  <Card title="Submissions" icon="file-circle-check">
    The ones somebody filled out and handed in. This is what the field works with.

    → [Filling out a form](/forms/fill-out-a-form)
  </Card>
</CardGroup>

## Editing a template does not change forms already submitted

<Warning>
  Change the blank and you change what the **next** person fills out. The 40 forms already turned in keep the fields they had on the day they were submitted — which is what you want, because those are your record.
</Warning>

## So which tab do I want?

| If you're…                                    | Go to           |
| --------------------------------------------- | --------------- |
| Filling out a log at the end of the shift     | **Submissions** |
| Looking for something somebody turned in      | **Submissions** |
| Adding a field everyone will need from now on | **Templates**   |
| Setting up a form for the first time          | **Templates**   |

## Next

<CardGroup cols={2}>
  <Card title="Fill one out" icon="pen-to-square" href="/forms/fill-out-a-form">
    Draft vs. submitted, and who gets notified.
  </Card>

  <Card title="Build one" icon="sliders" href="/forms/build-a-template">
    All twenty field types.
  </Card>
</CardGroup>
