From dea70a8855cebe6d35eb8508ee150a79e87b8f45 Mon Sep 17 00:00:00 2001 From: Mike Crute Date: Fri, 28 Dec 2012 15:43:50 -0500 Subject: Users can submit talk proposals --- templates/accounts/profile.html | 26 +++++++++++++++++++++++--- 1 file changed, 23 insertions(+), 3 deletions(-) (limited to 'templates/accounts/profile.html') diff --git a/templates/accounts/profile.html b/templates/accounts/profile.html index aa6f3ad..fb9e8b1 100644 --- a/templates/accounts/profile.html +++ b/templates/accounts/profile.html @@ -1,9 +1,29 @@ {% extends "base.html" %} +{% load icons %} {% block content %}

Your Account

Hello {{ user.email }}

- + +

Your Talk Proposals

+

Submit a Proposal

+ +{% if proposals %} + + + + + + + + {% for proposal in proposals %} + + + + + + + {% endfor %} +
TitleTypeCategoryApproved
{{ proposal.title }}{{ proposal.type }}{{ proposal.category }}{{ proposal.approved|boolean_icon }}
+{% endif %} {% endblock %} -- cgit v1.2.3