Added verification to the profile page

This commit is contained in:
2010-04-02 19:55:25 +01:00
parent ed05f50217
commit ef65dfe145

View File

@@ -79,14 +79,17 @@ setup.</p>
<h2>Reddit Accounts</h2> <h2>Reddit Accounts</h2>
<p>This is a list of all your current linked Reddit accounts</p> <p>This is a list of all your current linked Reddit accounts</p>
{% if redditaccounts %} {% if redditaccounts %}
<p>To verify your Reddit account, login on Reddit then click
<a href="http://www.reddit.com/message/compose/?to=DredditVerification&subject=Verification">this link</a> and put your Auth username in the message.</p>
<table> <table>
<thead> <thead>
<tr><th>Username</th><th>Created Date</th></tr> <tr><th>Username</th><th>Created Date</th><th>Validated</th></tr>
</thead> </thead>
<tbody> <tbody>
{% for acc in redditaccounts %} {% for acc in redditaccounts %}
<tr><td>{{ acc.username }}</td> <tr><td>{{ acc.username }}</td>
<td>{{ acc.date_created }}</td> <td>{{ acc.date_created }}</td>
<td>{% if acc.validated %}Yes{% else %}No{% endif %}</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>