aboutsummaryrefslogblamecommitdiffstats
path: root/ctrack/register/templates/single_datetime_event_create.html
blob: 3494792676f73d6ab5c16e60be3cea58dc58cd68 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                          





                                                 
              

 













                                                                       
{% extends  "base.html" %}

{% load static %}
{% load crispy_forms_tags %}

{% block title %}
  Create a new event (Meeting, Phone call, Email)
{% endblock %}


{% block content %}
  <div class="container">
    <div class="row justify-content-center">
      <div class="col-8">
        <h3 class="mt-2">Create a new Simple Event</h3>
        <form method="post">
          {% csrf_token %}
            {{ form|crispy}}
          <button type="submit" class="btn btn-success">Submit</button>
        </form>
      </div>
    </div>
  </div>
{% endblock content%}