{% extends 'base.html' %} {% block title %}Services - Optinet Global Links{% endblock %} {% block content %}

Internet Services

Add Service
{% for service in services %}
{{ service.name }}
{% if service.is_active %} Active {% else %} Inactive {% endif %}

KSh {{ service.price }}

per {{ service.billing_cycle }}
  • {{ service.speed_mbps }} Mbps
  • {% if service.fup_gb %}
  • {{ service.fup_gb }} GB Fair Usage
  • {% else %}
  • Unlimited
  • {% endif %} {% if service.installation_fee > 0 %}
  • KSh {{ service.installation_fee }} Installation Fee
  • {% else %}
  • Free Installation
  • {% endif %}
{% empty %}

No services available

Create your first internet service to get started.

Add Service
{% endfor %}
{% endblock %}