25 lines
1.3 KiB
HTML
25 lines
1.3 KiB
HTML
{% extends 'base.html' %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Organization Details" %}{% endblock title %}
|
|
{% block content %}
|
|
<div class="row my-4">
|
|
<h2>{{ organization.get_local_name }}</h2>
|
|
<ul class="list-group mb-4">
|
|
<li class="list-group-item"><strong>{% trans "CRN" %}:</strong> {{ organization.crn }}</li>
|
|
<li class="list-group-item"><strong>{% trans "VRN" %}:</strong> {{ organization.vrn }}</li>
|
|
<li class="list-group-item"><strong>{% trans "Phone" %}:</strong> {{ organization.phone_number }}</li>
|
|
<li class="list-group-item"><strong>{% trans "Address" %}:</strong> {{ organization.address }}</li>
|
|
</ul>
|
|
<div class="d-flex">
|
|
<a href="{% url 'organization_update' organization.pk %}" class="btn btn-sm btn-warning me-2">{% trans "Edit" %}</a>
|
|
<button class="btn btn-phoenix-danger btn-sm delete-btn"
|
|
data-url="{% url 'organization_delete' organization.slug %}"
|
|
data-message="Are you sure you want to delete this organization?"
|
|
data-bs-toggle="modal" data-bs-target="#deleteModal">
|
|
{% trans 'Delete' %}<i class="fas fa-trash ms-1"></i>
|
|
</button>
|
|
|
|
</div>
|
|
</div>
|
|
{% include 'modal/delete_modal.html' %}
|
|
{% endblock %} |