diff --git a/registrasion/templates/invoice.html b/registrasion/templates/invoice.html
deleted file mode 100644
index bd503657..00000000
--- a/registrasion/templates/invoice.html
+++ /dev/null
@@ -1,51 +0,0 @@
-
-
-{% extends "site_base.html" %}
-{% block body %}
-
-
Invoice {{ invoice.id }}
-
-
- - Void: {{ invoice.void }}
- - Paid: {{ invoice.paid }}
-
-
-
-
- Description |
- Quantity |
- Price/Unit |
- Total |
-
- {% for line_item in invoice.lineitem_set.all %}
-
- {{line_item.description}} |
- {{line_item.quantity}} |
- {{line_item.price}} |
- FIXME |
-
- {% endfor %}
-
- TOTAL |
- |
- |
- {{ invoice.value }} |
-
-
-
-
-
- Payment time |
- Reference |
- Amount |
-
- {% for payment in invoice.payment_set.all %}
-
- {{payment.time}} |
- {{payment.reference}} |
- {{payment.amount}} |
-
- {% endfor %}
-
-
-{% endblock %}
diff --git a/registrasion/templates/product_category.html b/registrasion/templates/product_category.html
deleted file mode 100644
index fb54a58d..00000000
--- a/registrasion/templates/product_category.html
+++ /dev/null
@@ -1,50 +0,0 @@
-
-
-{% extends "site_base.html" %}
-{% block body %}
-
- Product Category: {{ category.name }}
-
-
-
-
-{% endblock %}
diff --git a/registrasion/templates/profile_form.html b/registrasion/templates/profile_form.html
deleted file mode 100644
index 56f3010c..00000000
--- a/registrasion/templates/profile_form.html
+++ /dev/null
@@ -1,22 +0,0 @@
-
-
-{% extends "site_base.html" %}
-{% block body %}
-
- Attendee Profile
-
- Something something fill in your attendee details here!
-
-
-
-
-{% endblock %}