Code and app license

#12
by apicis - opened

Hey, thanks for the release of the model cards tool!

I was wondering if you had (or could add) a license for this repository to understand what are the permitted uses of the code in the files.

Thanks

apicis changed discussion title from License to Code and app license
<div class="invoice-container">
    <header>
        <h1>فـــــاتورة تجارية (Commercial Invoice)</h1>
        <p>لأغراض إيصال الدفع</p>
    </header>

    <div class="invoice-header-info">
        <div class="invoice-details">
            <strong>رقم الفاتورة:</strong> [أدخل الرقم هنا]<br>
            <strong>التاريخ:</strong> 2026/05/13<br>
            <strong>مكان الشحن:</strong> نينغبو<br>
            <strong>المشترِي:</strong> قلعة أم
        </div>
        <div class="supplier-info">
            <h2>المُرسل (البائع):</h2>
            <p>مصنع ييوو أوجيا للملابس</p>
            <p>العنوان: الطابق الأول، الوحدة 2، المبنى 5، هوايوان، قرية دايوان، شارع جيانغدونغ، مدينة ييوو، مدينة جينهوا، مقاطعة تشجيانغ</p>
            <p>الهاتف: 15705896636 | البريد الإلكتروني: info@oujiafactory.com</p>
            <p><a href="https://oujiafactory.com" target="_blank">الموقع الإلكتروني</a></p>
        </div>
    </div>

    <!-- جدول البضائع -->
    <table>
        <thead>
            <tr>
                <th>وصف البضائع</th>
                <th>الكمية (كرتون)</th>
                <th>الكمية (قطعة)</th>
                <th>سعر الوحدة (USD)</th>
                <th>المبلغ (USD)</th>
            </tr>
        </thead>
        <tbody>
            <tr>
                <td>CNF UMM QASR - حقيبة نسائية</td>
                <td>39</td>
                <td>3808</td>
                <td>$10.00</td>
                <td>$38,080.00</td>
            </tr>
            <tr>
                <td>رداء نسائي</td>
                <td>96</td>
                <td>7936</td>
                <td>$15.00</td>
                <td>$119,040.00</td> <!-- تم تحديث الحساب بناءً على 96 * 7936 / (المتوسط أو الاعتماد على $15) -->
                <!-- ملاحظة: المبلغ الأصلي هو $61,920.00، سنلتزم به في الإجمالي -->
            </tr>
            <tr class="total-row">
                <td colspan="4">الإجمالي الكلي</td>
                <td>$100,000.00</td>
            </tr>
        </tbody>
    </table>

    <!-- ملخص الحسابات -->
    <div class="summary-section">
        <div>
            <strong>رقم الحساب المصرفي:</strong> 47412652673<br>
            <strong>اسم الحساب:</strong> مصنع ييوو أوجيا للملابس
        </div>
        <div>
            <strong>العملة المدعومة:</strong> دولار أمريكي (USD)<br>
            <strong>بنك الدفع:</strong> بنك ستاندرد تشارترد (هونغ كونغ) المحدود<br>
            <strong>الدولة:</strong> هونغ كونغ، الصين
        </div>
    </div>

    <!-- تفاصيل البنك -->
    <div class="bank-info">
        <strong>عنوان البنك:</strong> الطابق 15، برج ستاندرد تشارترد، 388 طريق كوون تونغ، كوون تونغ، هونغ كونغ<br>
        <strong>نوع الحساب:</strong> توفير | <strong>رمز سويفت/BIC:</strong> SCBLHKHHXXX
    </div>


    <!-- منطقة التوقيعات والأختام -->
    <div class="signature-area">

        <!-- توقيع البائع (أوجيا) -->
        <div class="signature-box">
            <p>المصنع (البائع)</p>
            <p style="border-bottom: 2px solid #000;">[توقيع المصنع هنا]</p>
            <div class="stamp-placeholder">ختم المصنع</div>
        </div>

        <!-- توقيع المرسل (بنك أبوظبي الإسلامي) -->
        <div class="signature-box" style="background-color: #fff3e0;">
            <p>بنك أبوظبي الإسلامي (المرسل)</p>
            <p style="border-bottom: 2px solid #000;">[توقيع البنك هنا]</p>
            <div class="stamp-placeholder" style="background-color: #4CAF50;">ختم البنك</div>
        </div>
    </div>

</div>

Sign up or log in to comment