mirror of
https://github.com/nottinghamtec/PyRIGS.git
synced 2026-01-21 23:42:14 +00:00
28 lines
795 B
HTML
28 lines
795 B
HTML
{% extends request.is_ajax|yesno:"base_ajax.html,base_rigs.html" %}
|
|
|
|
{% load markdown_tags %}
|
|
|
|
{% block content %}
|
|
<div class="row my-3 py-3">
|
|
<div class="col-md-6">
|
|
{% include 'partials/contact_details.html' %}
|
|
</div>
|
|
<div class="col-md-6">
|
|
{% include 'partials/event_details.html' %}
|
|
</div>
|
|
{% if not request.is_ajax and perms.RIGS.view_event %}
|
|
<div class="col-sm-12 text-right">
|
|
{% include 'partials/last_edited.html' with target="event_history" %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
{% endblock %}
|
|
|
|
{% if request.is_ajax %}
|
|
{% block footer %}
|
|
{% if perms.RIGS.view_event %}
|
|
{% include 'partials/last_edited.html' with target="event_history" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% endif %}
|