You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
58 lines
1.4 KiB
58 lines
1.4 KiB
{% extends "crm/base.html" %}
|
|
{% load crm_tags %}
|
|
|
|
|
|
{% block content %}
|
|
|
|
{% if request.user|is_crm_manager %}
|
|
|
|
<div class="d-flex">
|
|
<a href="{% url 'crm:add_event' %}" class="small-button margin-v20">
|
|
Add Event
|
|
</a>
|
|
<a href="{% url 'crm:add_prospect' %}" class="small-button margin-v20 left-margin">
|
|
Add Prospect
|
|
</a>
|
|
</div>
|
|
|
|
<div class="container grid-x padding-bottom">
|
|
<div class="cell medium-6 large-6 my-block bubble">
|
|
|
|
<div class="d-flex justify-content-between align-items-center mb-4">
|
|
<h1 class="title">Completed Events</h1>
|
|
</div>
|
|
|
|
<div class="list-group">
|
|
{% for event in completed_events %}
|
|
{% include "crm/event_row.html" with event=event %}
|
|
{% empty %}
|
|
<div class="list-group-item">No completed events.</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="cell medium-6 large-6 my-block bubble">
|
|
|
|
<div class="d-flex justify-content-between align-items-center mb-4">
|
|
<h1 class="title">Planned Events</h1>
|
|
</div>
|
|
|
|
<div class="list-group">
|
|
{% for event in planned_events %}
|
|
{% include "crm/event_row.html" with event=event %}
|
|
{% empty %}
|
|
<div class="list-group-item">No planned events.</div>
|
|
{% endfor %}
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
|
|
{% else %}
|
|
|
|
Not authorized
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|
|
|