Initial commit of DEMOS2 with the upgraded 'Create Event' UI. However, there is no input validation currently
This commit is contained in:
commit
7084bd1b16
155 changed files with 8102 additions and 0 deletions
38
allauthdemo/templates/allauth/account/base2.html
Executable file
38
allauthdemo/templates/allauth/account/base2.html
Executable file
|
@ -0,0 +1,38 @@
|
|||
{% extends "bases/bootstrap-member.html" %}
|
||||
|
||||
{% load i18n %}
|
||||
|
||||
{% block content %}
|
||||
|
||||
<div class=container>
|
||||
<h1>{% trans 'My Account' %}</h1>
|
||||
|
||||
<ul class="nav nav-tabs">
|
||||
<li class="{% block account_tab_events %}{% endblock %}">
|
||||
<a href="#">{% trans 'My Events' %}</a>
|
||||
</li>
|
||||
<li class="{% block account_nav_change_password %}{% endblock %}">
|
||||
<a href="{% url 'account_change_password' %}">{% trans 'Change Password' %}</a>
|
||||
</li>
|
||||
{% url 'socialaccount_connections' as connections_url %}
|
||||
{% if connections_url %}
|
||||
<li class="{% block account_nav_socialaccount_connections %}{% endblock %}">
|
||||
<a href="{{ connections_url}}">{% trans 'Connected Accounts' %}</a>
|
||||
</li>
|
||||
{% else %}
|
||||
<li>No connections url</li>
|
||||
{% endif %}
|
||||
</ul>
|
||||
{% block account_content %}
|
||||
{% endblock %}
|
||||
|
||||
</div>
|
||||
|
||||
{% endblock %}
|
||||
{#
|
||||
{% block appjs %}
|
||||
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
|
||||
{% block appjs_jquery %}
|
||||
{% endblock %}
|
||||
{% endblock %}
|
||||
#}
|
Reference in a new issue