summaryrefslogtreecommitdiff
path: root/arduino_blog/static/admin/templates/view-profile.html
blob: 34169283f3982769fafb03555381dd3fd0843dee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
{% extends MODERATOR_ACTIVATED|yesno:'website/templates/moderator/base.html,website/templates/base.html' %}
{% load widget_tweaks %}
{% load static %}
{% load count_tags %}

{% block title %}User Profile{% endblock %}

{% block cssblock %}
{% endblock %}

{% block heading %}
        <i class="fa fa-list-ul"></i> User Profile
{% endblock %}

{% block content %}

<br><br>
<div>
    <h3>{{profile.user.username}}'s Dashboard</h3> 
</div>
<br><br>

<div class="col-lg-12 ">  

    <ul class="nav nav-tabs">
        <li class="active"><a data-toggle="tab" href="#profile"> <span ><i class="fa fa-user"></i></span> 
            Profile</a></li>
        <li><a data-toggle="tab" href="#questions"><span ><i class="fa fa-question-circle"></i></span>  
            Questions</a></li>
        <li><a data-toggle="tab"href="#answers"><span ><i class="fa fa-check-circle"></i></span>  
            Answers</a></li>

        {% if show %}
        <li><a data-toggle="tab" href="#profile_edit"><span ><i class="fa fa-user"></i></span>
        Edit Profile</a></li>   
        {% endif %}
    </ul>

    <div class="tab-content">

        <div id="profile" class="tab-pane fade in active">
            <p>
            <div class="row well view-profile" style="margin-top: 20px;">
            <div class="col-sm-12">
            <div class="col-sm-12">
        
            <form class="form-signin form-horizontal  control-label " role="form" id="login_form" method="post" enctype="multipart/form-data">{% csrf_token %}
            {{ form.errors }}

            <div class="form-group">
                <label class="col-sm-3" for="id_first_name">User Name</label>
                <div class="col-sm-8 ">
                    {% if profile.user.username %}{{ profile.user.username }}{% else %}-{% endif %}
                </div>
            </div>

            <div class="form-group">
                <label class="col-sm-3 " for="id_last_name">First Name</label>
                <div class="col-sm-8  ">
                {% if profile.user.first_name %}{{ profile.user.first_name }}{% else %}-{% endif %} 
                </div>
            </div>

            <div class="form-group">
                <label class="col-sm-3 " for="id_last_name">Last Name</label>
                <div class="col-sm-8   ">
                {% if profile.user.last_name %}{{ profile.user.last_name }}{% else %}-{% endif %}
                </div>
            </div>

            {% if show %}
            <div class="form-group">
                <label class="col-sm-3 " for= "id_street">Address</label>
                    <div class="col-sm-8  ">
                {% if profile.address %}{{ profile.address }}{% else %}-{% endif %}
                </div>
            </div>
            {% endif %}

            {% if show %}
            <div class="form-group">
                <label class="col-sm-3 " for="id_phone">Email</label>
                <div class="col-sm-8  ">
                {% if profile.user.email %}{{ profile.user.email }}{% else %}-{% endif %}
                </div>
            </div>
            {% endif %}

            {% if show %}
            <div class="form-group">
                <label class="col-sm-3 " for="id_phone">Phone</label>
                <div class="col-sm-8 ">
                {% if profile.phone %}{{ profile.phone }}{% else %}-{% endif %}
                </div>
            </div>
            {% endif%}

            <div class="form-group">
                <label class="col-sm-3 " for="id_phone">Profile Created</label>
                <div class="col-sm-8  ">
                {{ profile.created }}  
                </div>
            </div>
            </form>
            </div>
            </div>
            </div>
            </p>
        </div>

        <div id="profile_edit" class="tab-pane fade ">

            <div class="row well view-profile" style="margin-top: 20px;">
            <div class="col-sm-12">
            <div class="col-sm-12">
            
            {% if show %}
            <form class="form-signin form-horizontal" action="/accounts/profile/" method="post" enctype="multipart/form-data">{% csrf_token %}
            
            <div class="form-group">
                <label class="col-sm-3 control-label" for="id_first_name">First Name<span style="color:red">*</span></label>
                <div class="col-sm-5">
                    {% render_field form.first_name class+="form-control first_name" tabindex="1" data-placeholder="Choose first_name" %}
                    {{ form.first_name.errors }}
                </div>
            </div>
            
            <div class="form-group">
                <label class="col-sm-3 control-label" for="id_last_name">Last Name<span style="color:red">*</span></label>
                <div class="col-sm-5">
                    {% render_field form.last_name class+="form-control last_name" tabindex="1" data-placeholder="Choose last_name" %}
                    {{ form.last_name.errors }}
                </div>
            </div>
            
            <div class="form-group">
                <label class="col-sm-3 control-label" for= "id_street">Address</label>
                <div class="col-sm-5">
                    {% render_field form.address class+="form-control street" tabindex="1" data-placeholder="Enter address" %}
                    {{ form.address.errors }}
                </div>
            </div>
            
            <div class="form-group">
                <label class="col-sm-3 control-label" for="id_phone">Phone</label>
                <div class="col-sm-5">
                    {% render_field form.phone class+="form-control phone" tabindex="1" data-placeholder="Choose phone" %}
                    {{ form.phone.errors }}
                </div>
            </div>

            <input class="btn btn-primary" type="submit" value="Submit" />
            </form>

            <small><span style="color:red">*&nbsp;</span><strong>Field required</strong></small>
            <small></p><span style="color:red">*&nbsp;</span><strong>Fields required to access basic features of forum</strong></small>
            {%  endif %}

            </div>
            </div>
            </div>
        </div>

        <div id="questions" class="tab-pane fade">

            <p>
            <div class="row well view-profile" style="margin-top: 20px;">
      
            {% for question in questions %}
            <div class="my-question">
                <span class="title"><a href="{% url 'website:get_question' question.id %}">
                    {{ question.title }}</a>
                </span>
                <br />
                <span class="date">
                    <small>Asked on:{{ question.date_created }}</small>
                </span>
            </div>
            {% endfor %}

            </div>
            </p>
        </div>

        <div id="answers" class="tab-pane fade">

            <p>
            <div class="row well view-profile" style="margin-top: 20px;">
                
            {% for answer in answers%}
            <div class="my-answer">
                <span class="body">
                    <a href="{% url 'website:get_question' answer.question.id %}">{{ answer.question.title }}</a> 
                </span>
                <br><br>
                <span class="date">
                    <small>Replied on:{{ answer.date_created }}
                </small>
                </span>
            </div>
            {% endfor %}
    
            </div>
            </p>

        </div>
    </div> 
</div>

{% endblock %}