123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- {% include 'header.twig' %}
- {% if profile == 'private' %}
- <form action="" method="post">
- <table class="user">
- <tr>
- <td>
- User
- </td>
- <td>
- {{ user.name }}
-
- <div><a href="{{ 'user_activity/posts'|docroot }}">Your posts</a></div>
- <div><a href="{{ 'user_activity/comments'|docroot }}">Your comments</a></div>
- <div><a href="{{ 'user_activity/replies'|docroot }}">Replies to your comments</a></div>
- </td>
- </tr>
-
- <tr>
- <td>
- Since
- </td>
- <td>
- {{ user.registered|date("F, jS Y H:i") }} ({{ user.registered|ago }})
- </td>
- </tr>
-
- <tr>
- <td>
- About
- </td>
- <td>
- <textarea name="about" class="form-control">{{ user.about }}</textarea>
- </td>
- </tr>
-
- <tr>
- <td>
- Email
- </td>
- <td>
- <input type="text" name="email" class="form-control" value="{{ user.email }}" />
- <em>Required if you wish to change your password</em>
- {#
- <p>
- <label>
- <input type="checkbox" name="email_notifications" {{ user.email_notifications ? 'checked="checked"' }} />
- Send notifications via email
- </label>
- </p>
- #}
- </td>
- </tr>
-
- <tr>
- <td>
- </td>
- <td>
- <input type="submit" name="update" value="Update" class="button button_info" />
- </td>
- </tr>
- </table>
- </form>
-
- {% else %}
- <table class="user">
- <tr>
- <td>
- User
- </td>
- <td>
- {{ other_user.username }}
- </td>
- </tr>
- <tr>
- <td>
- Since
- </td>
- <td>
- {{ other_user.registered|date("F, jS Y H:i") }} ({{ other_user.registered|ago }})
- </td>
- </tr>
- <tr>
- <td>
- About
- </td>
- <td>
- {{ other_user.about|markdown|raw }}
- </td>
- </tr>
- </table>
- {% endif %}
- {% include 'footer.twig' %}
|