> ## 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.

# Employees vs. External Contacts

> Employees log in and hold a role. External contacts are a directory you route things to. Picking the wrong one is the most common setup mistake.

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="80.1" />

<Warning>
  **The most common setup mistake in DirtView.** Get this one right and you'll avoid a week of confusion.
</Warning>

## The difference

<CardGroup cols={2}>
  <Card title="Employees" icon="user">
    **People who log in.** They have an account, a role, and they do work in DirtView — write RFIs, fill forms, approve tickets.

    Your own staff.
  </Card>

  <Card title="External Contacts" icon="address-book">
    **People you send things to.** They're a shared directory. No login, no role.

    The architect, the owner's rep, suppliers, the GC's PE.
  </Card>
</CardGroup>

## How to decide, every time

Ask one question: **does this person need to log in and do work in DirtView?**

* Yes → Employee.
* No, I just need to send them things and record that I did → External Contact.

<Tip>
  When you're not sure, make them an External Contact. Upgrading later is easy; you're not paying for a seat they don't use, and you haven't given a login to somebody outside your company.
</Tip>

## What goes wrong

| Mistake                             | What you see                                                                   |
| ----------------------------------- | ------------------------------------------------------------------------------ |
| Architect added as an Employee      | A login nobody uses, a role that doesn't fit, and a seat spent                 |
| Your own foreman added as a Contact | He can't sign in, and you spend a day on "permissions" that aren't the problem |

## Next

<CardGroup cols={2}>
  <Card title="Add an employee" icon="user-plus" href="/people/add-an-employee">
    Pending Invite, Active, Inactive.
  </Card>

  <Card title="The six roles" icon="shield-halved" href="/people/built-in-roles">
    Who to assign to whom.
  </Card>
</CardGroup>
