From 5f5392573012bddef0d33059a8043844dfe5412c Mon Sep 17 00:00:00 2001 From: tomtom5152 Date: Wed, 25 Mar 2015 21:10:45 +0000 Subject: [PATCH] Add missing profile_form.html template --- RIGS/templates/RIGS/profile_form.html | 71 +++++++++++++++++++++++++++ 1 file changed, 71 insertions(+) create mode 100644 RIGS/templates/RIGS/profile_form.html diff --git a/RIGS/templates/RIGS/profile_form.html b/RIGS/templates/RIGS/profile_form.html new file mode 100644 index 00000000..baa33424 --- /dev/null +++ b/RIGS/templates/RIGS/profile_form.html @@ -0,0 +1,71 @@ +{% extends 'base.html' %} +{% load widget_tweaks %} + +{% block title %}Update Profile {{object.name}}{% endblock %} + +{% block content %} +
+
+ {% include 'form_errors.html' %} +

Update Profile

+
+
{% csrf_token %} +
+ + +
+ {% render_field form.first_name class+="form-control" placeholder=form.first_name.label %} +
+
+ +
+ + +
+ {% render_field form.last_name class+="form-control" placeholder=form.last_name.label %} +
+
+ +
+ + +
+ {% render_field form.email type="email" class+="form-control" placeholder=form.email.label %} +
+
+ +
+ + +
+ {% render_field form.initials class+="form-control" placeholder=form.initials.label %} +
+
+ +
+ + +
+ {% render_field form.phone type="tel" class+="form-control" placeholder=form.phone.label %} +
+
+ +
+ +
+
+
+ + +
+
+{% endblock %} \ No newline at end of file