Spaces:
Paused
Paused
Update web/pages/local_content.py
Browse files- web/pages/local_content.py +14 -6
web/pages/local_content.py
CHANGED
@@ -562,9 +562,17 @@ def show_vision_requirements():
|
|
562 |
|
563 |
st.plotly_chart(fig, use_container_width=True)
|
564 |
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
562 |
|
563 |
st.plotly_chart(fig, use_container_width=True)
|
564 |
|
565 |
+
# متطلبات المحتوى المحلي حسب القطاع
|
566 |
+
st.markdown("### متطلبات المحتوى المحلي حسب القطاع")
|
567 |
+
|
568 |
+
# بيانات القطاعات
|
569 |
+
sectors_data = {
|
570 |
+
"القطاع": ["النفط والغاز", "الكهرباء", "المياه", "الاتصالات", "النقل", "البناء والتشييد"],
|
571 |
+
"نسبة المحتوى المحلي المطلوبة": ["50%", "40%", "45%", "35%", "30%", "25%"]
|
572 |
+
}
|
573 |
+
|
574 |
+
# إنشاء DataFrame
|
575 |
+
df = pd.DataFrame(sectors_data)
|
576 |
+
|
577 |
+
# عرض الجدول في Streamlit
|
578 |
+
st.dataframe(df)
|