diff options
| author | Bobby <[email protected]> | 2022-08-29 13:14:33 -0400 |
|---|---|---|
| committer | Bobby <[email protected]> | 2022-08-29 13:14:33 -0400 |
| commit | 043693f0825285ffd130e4e9cdfd396e741852ff (patch) | |
| tree | 0a154bd9d5f4cfd260aed234f226b5c6c9445ec6 /templates | |
| parent | 1a7bc7ab002b75dc3a8d8f780fb71d1691eb2816 (diff) | |
| download | thatcomputerscientist-043693f0825285ffd130e4e9cdfd396e741852ff.tar.xz thatcomputerscientist-043693f0825285ffd130e4e9cdfd396e741852ff.zip | |
Disable Homepage, Profile Visibility and User Specific URL temporarily
Diffstat (limited to 'templates')
| -rw-r--r-- | templates/blog/account.html | 4 | ||||
| -rw-r--r-- | templates/blog/partials/sidebar.html | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/templates/blog/account.html b/templates/blog/account.html index e219e978..84f63613 100644 --- a/templates/blog/account.html +++ b/templates/blog/account.html @@ -63,7 +63,7 @@ <input type="text" name="location" id="location" value="{{ user_profile.location }}" placeholder="Location" maxlength="50"/> <label for="bio">Bio</label> <textarea name="bio" id="bio" placeholder="Bio">{{ user_profile.bio }}</textarea> - <label for="isPublic">Account Visibility</label> + {% comment %} <label for="isPublic">Account Visibility</label> <select name="isPublic" id="isPublic"> <option value="1"{% if user_profile.is_public %} selected{% endif %}>Public</option> <option value="0"{% if not user_profile.is_public %} selected{% endif %}>Private</option> @@ -74,7 +74,7 @@ <option value="1"{% if user_profile.email_public %} selected{% endif %}>Public</option> <option value="0"{% if not user_profile.email_public %} selected{% endif %}>Private</option> </select> - {% endif %} + {% endif %} {% endcomment %} <input type="submit" value="Update Account" /> </fieldset> </form> diff --git a/templates/blog/partials/sidebar.html b/templates/blog/partials/sidebar.html index cd46c18a..63fb8dde 100644 --- a/templates/blog/partials/sidebar.html +++ b/templates/blog/partials/sidebar.html @@ -45,7 +45,7 @@ <li><a href="/blog">Blog</a></li> {% if user.is_authenticated %} <li><a href="{% url 'account' %}">My Account</a></li> - <li><a href="{% url 'homepage' %}">My Homepage<a></li> + {% comment %} <li><a href="{% url 'homepage' %}">My Homepage<a></li> {% endcomment %} {% else %} <li><a href="/register">Register</a></li> {% endif %} |
