]> git.lizzy.rs Git - cheatdb.git/blobdiff - app/templates/users/user_profile_page.html
Improve profile pic styling on user profile page
[cheatdb.git] / app / templates / users / user_profile_page.html
index 2d429f1539c30baba5035f8f63a06b816badfa78..f0f7ab0935d2e85ae3a4171ae5c483809a8d7c3c 100644 (file)
 
 {% block content %}
 
-<div class="box box_grey">
-       <h2>{{ user.username }}</h2>
-
-       <table>
-               <tr>
-                       <td>Rank:</td>
-                       <td>
-                               {{ user.rank.getTitle() }}
-                       </td>
-               </tr>
-               <tr>
-                       <td>Accounts:</td>
-                       <td>
-                               {% if user.forums_username %}
-                                       <a href="https://forum.minetest.net/memberlist.php?mode=viewprofile&un={{ user.forums_username }}">
-                                               Minetest Forum
-                                       </a>
-                               {% elif user == current_user %}
-                                       <a href="">Link Forums Account</a>
-                               {% endif %}
-
-                               {% if (user.forums_username and user.github_username) or user == current_user %}
-                                       |
-                               {% endif %}
-
-                               {% if user.github_username %}
-                                       <a href="https://github.com/{{ user.github_username }}">GitHub</a>
-                               {% elif user == current_user %}
-                                       <a href="{{ url_for('github_signin_page') }}">Link Github</a>
-                               {% endif %}
-
-                               {% if user == current_user %}
-                                       &#x1f30e;
-                               {% endif %}
-                       </td>
-               </tr>
-       </table>
-</div>
+{% if not current_user.is_authenticated and user.rank == user.rank.NOT_JOINED and user.forums_username %}
+<div class="alert alert-info alert alert-info">
+       <a class="float-right btn btn-default btn-sm"
+               href="{{ url_for('user_claim_page', username=user.forums_username) }}">Claim</a>
 
-<div class="box box_grey">
-       <h2>Packages</h2>
-       <ul>
-               {% for p in user.packages %}
-                       <li><a href="{{ p.getDetailsURL() }}">
-                               {{ p.title }} by {{ p.author.display_name }}
-                       </a></li>
-               {% else %}
-                       <li><i>No packages available</i></ul>
-               {% endfor %}
-       </ul>
-       {% if user == current_user or user.checkPerm(current_user, "CHANGE_AUTHOR") %}
-               <a href="{{ url_for('create_edit_package_page', author=user.username) }}">
-                       Create
-               </a>
-       {% endif %}
+       Is this you? Claim your account now!
 </div>
+{% endif %}
+
+<div class="row mb-3">
+       <div class="col-sm-6">
+               <div class="card">
+                       <h2 class="card-header">{{ user.display_name }}</h2>
+                       <div class="card-body row">
+                               <div class="col-md-2">
+                                       {% if user.email %}
+                                               <a class="btn btn-primary" href="https://en.gravatar.com/">
+                                       {% endif %}
+                                       <img class="img-responsive user-photo img-thumbnail  img-thumbnail-1" src="{{ (user.email or '') | gravatar }}">
+                                       {% if user.email %}
+                                               </a>
+                                       {% endif %}
+                               </div>
+                               <div class="col">
+                                       <table class="table">
+                                               <tr>
+                                                       <td>Rank:</td>
+                                                       <td>
+                                                               {{ user.rank.getTitle() }}
+                                                       </td>
+                                               </tr>
+                                               <tr>
+                                                       <td>Accounts:</td>
+                                                       <td>
+                                                               {% if user.forums_username %}
+                                                                       <a href="https://forum.minetest.net/memberlist.php?mode=viewprofile&un={{ user.forums_username }}">
+                                                                               Minetest Forum
+                                                                       </a>
+                                                               {% elif user == current_user %}
+                                                                       No forum account
+                                                               {% endif %}
+
+                                                               {% if (user.forums_username and user.github_username) or user == current_user %}
+                                                                       |
+                                                               {% endif %}
+
+                                                               {% if user.github_username %}
+                                                                       <a href="https://github.com/{{ user.github_username }}">GitHub</a>
+                                                               {% elif user == current_user %}
+                                                                       <a href="{{ url_for('github_signin_page') }}">Link Github</a>
+                                                               {% endif %}
+
+                                                               {% if user == current_user %}
+                                                                       &#x1f30e;
+                                                               {% endif %}
+                                                       </td>
+                                               </tr>
+                                               {% if user == current_user %}
+                                                       <tr>
+                                                               <td>Profile Picture:</td>
+                                                               <td>
+                                                                       {% if user.email %}
+                                                                               <a class="btn btn-primary" href="https://en.gravatar.com/">
+                                                                                       Gravatar
+                                                                               </a>
+                                                                       {% else %}
+                                                                               <p>
+                                                                                       Please add an email to your profile.
+                                                                               </p>
+                                                                       {% endif %}
+                                                               </td>
+                                                       </tr>
+                                                       <tr>
+                                                               <td>Password:</td>
+                                                               <td>
+                                                                       {% if user.password %}
+                                                                               Set | <a href="{{ url_for('user.change_password') }}">Change</a>
+                                                                       {% else %}
+                                                                               Not set | <a href="{{ url_for('set_password_page') }}">Set</a>
+                                                                       {% endif %}
+                                                               </td>
+                                                       </tr>
+                                               {% endif %}
+                                       </table>
+                               </div>
+                       </div>
+               </div>
+       </div>
 
 {% if form %}
        {% from "macros/forms.html" import render_field, render_submit_field %}
-       <form class="box box_grey" action="" method="POST" class="form" role="form">
-               <h2>Edit Details</h2>
+       <div class="col-sm-6">
+               <div class="card">
+                       <div class="card-header">Edit Details</div>
+                       <div class="card-body">
+                               <form action="" method="POST" class="form box-body" role="form">
+                                       {{ form.hidden_tag() }}
 
-               <div class="row">
-                       <div class="col-sm-6 col-md-5 col-lg-4">
-                               {{ form.hidden_tag() }}
+                                       {% if user.checkPerm(current_user, "CHANGE_DNAME") %}
+                                               {{ render_field(form.display_name, tabindex=230) }}
+                                       {% endif %}
 
-                               {{ render_field(form.display_name, tabindex=230) }}
+                                       {% if user.checkPerm(current_user, "CHANGE_EMAIL") %}
+                                               {{ render_field(form.email, tabindex=240) }}
+                                               <i>We'll send you an email to verify it if changed.</i>
+                                       {% endif %}
 
-                               {% if user.checkPerm(current_user, "CHANGE_EMAIL") %}
-                                       {{ render_field(form.email, tabindex=240) }}
-                               {% endif %}
+                                       {% if user.checkPerm(current_user, "CHANGE_RANK") %}
+                                               {{ render_field(form.rank, tabindex=250) }}
+                                       {% endif %}
 
-                               {% if user.checkPerm(current_user, "CHANGE_RANK") %}
-                                       {{ render_field(form.rank, tabindex=250) }}
-                               {% endif %}
-
-                               {{ render_submit_field(form.submit, tabindex=280) }}
+                                       {{ render_submit_field(form.submit, tabindex=280) }}
+                               </form>
                        </div>
                </div>
-       </form>
+       </div>
 {% endif %}
+</div>
+
+{% from "macros/packagegridtile.html" import render_pkggrid %}
+{{ render_pkggrid(packages, show_author=False) }}
+
+{% if topics_to_add %}
+       <div class="card mt-3">
+               <a name="unadded-packages"></a>
+               <h2 class="card-header">Unadded Packages</h2>
+
+               <p class="card-body">
+                       List of your forum topics which do not have a matching package.
+                       Topics with a strikethrough have been marked as discarded.
+               </p>
+
+               {% from "macros/topics.html" import render_topics_table %}
+               {{ render_topics_table(topics_to_add, show_author=False, show_discard=True, current_user=current_user) }}
+       </div>
+{% endif %}
+
+{% endblock %}
+
+
+{% block scriptextra %}
+       <script>
+               var csrf_token = "{{ csrf_token() }}";
+       </script>
+       <script src="/static/topic_discard.js"></script>
 {% endblock %}