client/addons/org/ui/_site/index.html
Jacob Schmidt 69f8f037df
All checks were successful
Build / Build (push) Successful in 28s
refactor: Remove tasks.json and update documentation in store functions
This commit removes the `tasks.json` file from the `.vscode` directory. Additionally, it enhances the documentation in `fnc_buyItem.sqf` and `fnc_buyVehicle.sqf` by providing clearer descriptions of item and vehicle types. The `fnc_handlePurchase.sqf` has also been updated to improve variable scoping for better code clarity.
2025-04-19 11:12:53 -05:00

91 lines
3.2 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>FORGE - ORG</title>
<link rel="stylesheet" href="styles.css">
<script src="script.js" defer></script>
</head>
<body>
<header>
<div class="container">
<div class="header-content">
<h1 id="orgName">Organization Name</h1>
<div class="org-stats">
<div class="stat-item">
<span></span>
<div>
<div>Reputation</div>
<div id="orgReputation">0</div>
</div>
</div>
<div class="stat-item">
<span>💰</span>
<div>
<div>Funds</div>
<div id="orgFunds">$0</div>
</div>
</div>
</div>
</div>
</div>
</header>
<main class="container">
<div class="sections-grid">
<!-- Members Section -->
<div class="section-tile">
<h2>Members</h2>
<ul class="member-list" id="membersList">
<!-- Members will be populated dynamically -->
</ul>
</div>
<!-- Vehicles Section -->
<div class="section-tile">
<h2>Vehicles</h2>
<ul class="asset-list" id="vehiclesList">
<!-- Vehicles will be populated dynamically -->
</ul>
</div>
<!-- Equipment Section -->
<div class="section-tile">
<h2>Equipment</h2>
<ul class="asset-list" id="equipmentList">
<!-- Equipment will be populated dynamically -->
</ul>
</div> <!-- Properties Section -->
<div class="section-tile">
<h2>Properties</h2>
<ul class="asset-list" id="propertiesList">
<!-- Properties will be populated dynamically -->
</ul>
</div> <!-- Supplies Section -->
<div class="section-tile">
<h2>Supplies</h2>
<ul class="asset-list" id="suppliesList">
<!-- Supplies will be populated dynamically -->
</ul>
</div> <!-- Transactions Section -->
<div class="section-tile">
<h2>Transactions</h2>
<ul class="transaction-list" id="transactionsList">
<!-- Transactions will be populated dynamically -->
</ul>
</div> <!-- Memos Section -->
<div class="section-tile memo-section">
<h2>Memos & Logs</h2>
<div class="memo-controls">
<button id="addMemoBtn" class="add-btn">Add Memo</button>
</div>
<ul class="memo-list" id="memosList">
<!-- Memos will be populated dynamically -->
</ul>
</div>
</div>
</main>
</body>
</html>