# User Profile Card > A detailed profile view combining images, metrics, and contact information in a polished card layout. A detailed profile view combining images, metrics, and contact information in a polished card layout. **Best for**: CRM dashboards, customer support tools, user management interfaces **Key techniques**: Profile images, metric cards, external links (email, maps), status badges with dynamic classes ## Template Code ```html {{ rows.0.`Full Name` }} ✉️ {{ rows.0.`Email` }} 📍 {{ rows.0.`Location` }} {{ rows.0.values.`Total Orders` }} Total Orders {{ rows.0.values.`Lifetime Value` }} Lifetime Value {{ rows.0.values.`Avg Order Value` }} Avg Order Status {{ rows.0.`Status` }} Member Since {{ rows.0.`Member Since` }} Last Order {{ rows.0.`Last Order Date` }} User ID {{ rows.0.`User ID` }} ``` ## Required Data Fields | Field | Type | Description | |-------|------|-------------| | `Full Name` | Dimension | User's full name | | `Email` | Dimension | Email address | | `Location` | Dimension | City or address | | `Profile Image URL` | Dimension | URL to profile photo | | `Status` | Dimension | Status value (e.g., "active", "vip", "new") | | `Member Since` | Dimension | Registration date | | `Last Order Date` | Dimension | Most recent order date | | `User ID` | Dimension | Unique identifier | | `Total Orders` | Measure | Order count | | `Lifetime Value` | Measure | Total customer value | | `Avg Order Value` | Measure | Average order amount | ## Sample Data Import this data into Holistics to use: [sample-data-record-lookup.csv](https://media.holistics.io/fad18386-sample-data-record-lookup.csv) This template displays only the first row: ```csv User ID,Email,Full Name,Profile Image URL,Location,Status,Member Since,Last Order Date,Total Orders,Lifetime Value,Avg Order Value 1005,chaisson.barb@thedoghousemail.com,Chaisson Barb,https://i.pravatar.cc/150?img=5,Berlin,VIP,Jun 2022,Nov 2024,45,6230,138 1002,ciubal.samuel@desilota.com,Ciubal Samuel,https://i.pravatar.cc/150?img=2,Mumbai,Active,Mar 2023,Oct 2024,18,2890,161 1004,homes.dale@ivebeenframed.com,Homes Dale,https://i.pravatar.cc/150?img=4,Medan,Active,Feb 2024,Oct 2024,12,1680,140 ``` ## Customization Tips - Add more status badge styles by creating new CSS classes (e.g., `.status-badge.churned`) - The status badge automatically applies styling based on the raw value matching a CSS class - Use `rows.0` (dot notation) for single-record displays - External links use `.raw` values to avoid formatting issues in URLs