-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add individual profile, clean up account/login/registration tem…
…plates (#101) * feat: styling account templates (#15) * feat: more polish to account management templates * fix: further polish * feat: finish #15 * feat: partial implementation of individual profile (#7) * feat: implement relationships to orgs * feat: complete individual profile * feat: user social network localization * fix: adjust typography * fix: remove time from updated, add dividers * feat: switch to appropriate tab for overflow
1 parent
09e8ad8
commit a70ee0a
Showing
39 changed files
with
628 additions
and
378 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
{% extends 'maps/base.html' %} | ||
{% load static %} | ||
{% load maps_extras %} | ||
{% load i18n %} | ||
{% block title %}{{ 'Account settings' | titlify }}{% endblock %} | ||
{% block bodyclass %}account{% endblock %} | ||
{% block content %} | ||
<div class="page-header"> | ||
<p><a class="link--breadcrumb" href="{% url 'index' %}">{% trans "Home" %}</a></p> | ||
<h1>{% trans 'Account settings' %}</h1> | ||
</div> | ||
<div class="stack"> | ||
<ul class="link-list"> | ||
<li class="link-list__item"><a href="{% url 'account_email' %}">{% trans 'Manage email addresses' %}</a></li> | ||
<li class="link-list__item"><a href="{% url 'account_change_password' %}">{% trans 'Change password' %}</a></li> | ||
</ul> | ||
</div> | ||
{% endblock %} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.