from branca.element import Template, MacroElement labels_unverified_requests="""
  • Rescue / Secours / إغاثة
  • Medical Assistance / Assistance Médicale / مساعدة طبية
  • Shelter / Abris / مأوى
  • Food & Water / Nourriture et eau / طعام وماء
  • Dangers / Dangers / مخاطر
  • Done / terminée / تم
  • Partial / Partiellement terminée / تم جزئيا
  • Planned / Prévue / مخطط لها
  • """ labels_verified="""
  • High Emergency / طوارئ عالية
  • Medium Emergency / طوارئ متوسطة
  • Low Emergency / طوارئ منخفضة
  • Done / تم
  • Partial / تم جزئيا
  • Planned / مخطط لها
  • """ template_1 = """ {% macro html(this, kwargs) %} jQuery UI Draggable - Default functionality
    Legend / Nomenclature / مفتاح الخريطة
    {% endmacro %}""" def get_legend_macro(show_unverified): legend_macro = MacroElement() legend_macro._template = Template(template_1 + (labels_unverified_requests if show_unverified else labels_verified) + template_2) return legend_macro __all__ = ["get_legend_macro"]