Initial commit of DEMOS2 with the upgraded 'Create Event' UI. However, there is no input validation currently

This commit is contained in:
vince0656 2018-06-12 13:31:38 +01:00
commit 7084bd1b16
155 changed files with 8102 additions and 0 deletions

View file

@ -0,0 +1,48 @@
{% extends "account/base.html" %}
{% load i18n %}
{% load bootstrap3 %}
{% block head_title %}{% trans "" %}{% endblock %}
{% block account_content %}
{% endblock %}
<!--
<div class="row">
{% bootstrap_messages %}
<div class="col-sm-6 col-md-4 col-lg4">
<p class="sticky taped2" style="width: 250px;">
<strong>Welcome {{ request.user.name }}!</strong><br>
At this point, the site has<br />
authenticated you and, if you<br />
used a social network, retrieved<br />
your picture and key bio details<br />
such as name.
</p>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<h3>Picture</h3>
<p class="picture-frame">
{% if user.profile.avatar_url %}<img alt="" src="{{user.profile.avatar_url}}" style="width: 256px; height: 256px">
{% else %}No picture available yet.{% endif %}
</p>
</div>
<div class="col-sm-6 col-md-4 col-lg-4">
<h3>Profile</h3>
<ul class="list-unstyled">
<li>First name: <strong>{{user.first_name}}</strong></li>
<li>Last name: <strong>{{user.last_name}}</strong></li>
<li>Display name: <strong>{{user.display_name}}</strong></li>
<li>Email: <strong>{{user.email}}</strong></li>
<li>{% if request.user.profile.account_verified %}Verified{% else %}Unverified{% endif %}</li>
</ul>
<a href="{% url 'account_profile' %}">Edit</a>
</div>
</div>
-->