diff options
| author | Bobby <[email protected]> | 2023-05-31 10:29:34 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2023-05-31 10:29:34 -0400 |
| commit | 113fbb1b5b20f21f7cd5e6a8e94fc8cf4e8ca569 (patch) | |
| tree | 4028904ff6c2544900a34322e16a1e48c41526ba /templates | |
| parent | 4f9a36f99aac6f59b4a4db3afc13a5c7234f4a65 (diff) | |
| download | thatcomputerscientist-113fbb1b5b20f21f7cd5e6a8e94fc8cf4e8ca569.tar.xz thatcomputerscientist-113fbb1b5b20f21f7cd5e6a8e94fc8cf4e8ca569.zip | |
Better phone compatibility for additional pages
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/blog/account.html | 7 | ||||
| -rw-r--r-- | templates/blog/articles.html | 2 |
2 files changed, 4 insertions, 5 deletions
diff --git a/templates/blog/account.html b/templates/blog/account.html index a9480702..281bdaf7 100644 --- a/templates/blog/account.html +++ b/templates/blog/account.html @@ -56,9 +56,9 @@ </div> {% elif request.GET.tab == 'blinkies' %} <div id="blinkie-chooser"> + <p>Choose a blinkie to display on your public profile.</p> <form method="post" action="{% url 'users:updateblinkie' %}"> {% csrf_token %} - <p>Choose a blinkie to display on your public profile.</p> <div style="display: inline; width: 250px; float: left;"> <input type="radio" name="blinkie" value="" id="blinkie_none" checked /> <label for="blinkie_none"> @@ -73,10 +73,9 @@ </label> </div> {% endfor %} - <div style="clear: both;"></div> - <br><br> - <input type="submit" value="Change Blinkie" class="button button-special" /> + <input type="submit" style="margin-top: 20px;" value="Change Blinkie" class="button button-special" /> </form> + <div style="clear: both;"></div> </div> {% elif request.GET.tab == 'details' %} <div id="details"> diff --git a/templates/blog/articles.html b/templates/blog/articles.html index 7c3d9958..6c3ae869 100644 --- a/templates/blog/articles.html +++ b/templates/blog/articles.html @@ -4,7 +4,7 @@ {% elif type == 'articles-archive' %} <h2 style="margin-top:15px;"> Posts made in {{ date }}</h2> {% elif type == 'articles-category' %} -<h2 style="margin-top:15px;"> Posts made in Category: {{ category }}</h2> +<h2 style="margin-top:15px;"> Posts made in Category: {{ category_name }}</h2> {% endif %} |
