56 lines
2.0 KiB
HTML
56 lines
2.0 KiB
HTML
{% extends "users/base.html" %}
|
|
{% load crispy_forms_tags %}
|
|
{% block content %}
|
|
{% if request.user.profile.agency.module_messages %}
|
|
<div class="content-section col-6">
|
|
|
|
<h3>Mitteilung von {{mess.created_by.first_name}} {{mess.created_by.last_name}}</h3>
|
|
<small>Versendet am {{mess.created_date}}</small>
|
|
<hr>
|
|
<div class="card">
|
|
<div class="card-body">
|
|
Hallo {{request.user.first_name}} {{request.user.last_name}},<br /><br />
|
|
{{mess.content}}
|
|
<br /><br />
|
|
Mit freundlichen Grüßen<br /><br />
|
|
{{mess.created_by.first_name}} {{mess.created_by.last_name}}
|
|
<hr>
|
|
<button class="btn btn-primary btn-sm" style="float: right;" onclick="javascript:showDelMod()"><i class="fas fa-trash"></i></button>
|
|
</div></div></div>
|
|
|
|
<!-- CONFIRMA DELETE DIR -->
|
|
<div class="modal fade" id="delMess" tabindex="-1" role="dialog" data-backdrop="static" aria-labelledby="groupDelFunction" aria-hidden="true">
|
|
<div class="modal-dialog " role="document">
|
|
<div class="modal-content">
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="exampleModalLongTitle">Mitteilung löschen</h5>
|
|
<button type="button" class="close" data-dismiss="modal" aria-label="Schließen">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|
|
<div class="modal-body">
|
|
Wollen Sie die Mitteilung wirklich löschen?
|
|
</div>
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-primary" data-dismiss="modal" onclick="javascript:delAction()">Löschen</button>
|
|
<button type="button" class="btn btn" data-dismiss="modal">Abbrechen</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
|
|
function delAction(){
|
|
location.href = "{% url 'delsinglemessagefromsingle' mess.pk %}"
|
|
}
|
|
|
|
function showDelMod(){
|
|
$("#delMess").modal("toggle");
|
|
}
|
|
|
|
</script>
|
|
|
|
{% else %}
|
|
<h3>Das Modul Mitteilungen wurde in ihrer Agentur deaktiviert.</h3>
|
|
{% endif %}
|
|
{% endblock content %} |