[PR #600] [CLOSED] Update template #585 #1975

Closed
opened 2026-02-27 11:20:24 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/modoboa/modoboa/pull/600
Author: @Toc-Toc
Created: 8/25/2014
Status: Closed

Base: masterHead: update-template-585


📝 Commits (10+)

  • ae851f1 Delete the old bootstrap.css and replace by the new 3.2 bootstrap.css
  • 9742d02 Replace the old glyphicons files by the new ones
  • 0b9ce92 Delete bootstrap-responsive.css which will be useless
  • c1f4147 Rename the folder img in fonts at url modoboa/static
  • e22028e Change html tags in the top navbar and footer navbar
  • a778681 Change html tags in the core of the page
  • de32ba0 Subsitution of "icon" by "glyphicon" in file admin_tags.py
  • 685df39 Add many css rules
  • 84255d1 Add a bottom margin to the form and change some html tags refering to forms
  • 035b8ba Substitute "control-group" with "form-group"

📊 Changes

111 files changed (+7818 additions, -922 deletions)

View changed files

📝 modoboa/core/app_settings.py (+35 -19)
📝 modoboa/core/forms.py (+9 -5)
📝 modoboa/core/models.py (+2 -2)
📝 modoboa/core/static/core/css/userprefs.css (+0 -9)
📝 modoboa/core/templates/core/parameters.html (+1 -1)
📝 modoboa/core/templates/core/settings_header.html (+1 -1)
📝 modoboa/core/templates/core/user_index.html (+1 -1)
📝 modoboa/core/templates/core/user_preferences.html (+1 -1)
📝 modoboa/core/templates/core/user_profile.html (+1 -1)
📝 modoboa/core/templatetags/core_tags.py (+5 -5)
📝 modoboa/extensions/admin/app_settings.py (+3 -2)
📝 modoboa/extensions/admin/forms/account.py (+19 -8)
📝 modoboa/extensions/admin/forms/alias.py (+4 -2)
📝 modoboa/extensions/admin/forms/domain.py (+7 -3)
📝 modoboa/extensions/admin/forms/export.py (+9 -3)
📝 modoboa/extensions/admin/forms/forward.py (+1 -1)
📝 modoboa/extensions/admin/forms/import_.py (+5 -2)
📝 modoboa/extensions/admin/models/alias.py (+1 -1)
📝 modoboa/extensions/admin/models/domain.py (+1 -1)
📝 modoboa/extensions/admin/static/admin/css/settings.css (+0 -1)

...and 80 more files

📄 Description

This branch contains the new template using bootstrap 3.2. The web application has now a full responsive design.

Tested on iPad, Android smartphones and desktop browsers.


🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/modoboa/modoboa/pull/600 **Author:** [@Toc-Toc](https://github.com/Toc-Toc) **Created:** 8/25/2014 **Status:** ❌ Closed **Base:** `master` ← **Head:** `update-template-585` --- ### 📝 Commits (10+) - [`ae851f1`](https://github.com/modoboa/modoboa/commit/ae851f193d80b0815f1df7e98a1a770bf4f43406) Delete the old bootstrap.css and replace by the new 3.2 bootstrap.css - [`9742d02`](https://github.com/modoboa/modoboa/commit/9742d02fd776e306e084be1ccabbbffb1cbcf4ac) Replace the old glyphicons files by the new ones - [`0b9ce92`](https://github.com/modoboa/modoboa/commit/0b9ce92e0b8d62b7ade61b8af0a941a9243db446) Delete bootstrap-responsive.css which will be useless - [`c1f4147`](https://github.com/modoboa/modoboa/commit/c1f4147b5eb6f01ef8c8829b6391d377213bf520) Rename the folder img in fonts at url modoboa/static - [`e22028e`](https://github.com/modoboa/modoboa/commit/e22028e2e637ac74de93e01c04d1986b36c6b469) Change html tags in the top navbar and footer navbar - [`a778681`](https://github.com/modoboa/modoboa/commit/a778681298d4ef1915ca58a8be8585423790354c) Change html tags in the core of the page - [`de32ba0`](https://github.com/modoboa/modoboa/commit/de32ba0e9c376ee27a86dc1d35ec64e6bf38d8b5) Subsitution of "icon" by "glyphicon" in file admin_tags.py - [`685df39`](https://github.com/modoboa/modoboa/commit/685df398a08d17dcfdec3cea6a64f8a2398c24c8) Add many css rules - [`84255d1`](https://github.com/modoboa/modoboa/commit/84255d1ee1cb78176fa1b7b278cbbbf784ebb3d9) Add a bottom margin to the form and change some html tags refering to forms - [`035b8ba`](https://github.com/modoboa/modoboa/commit/035b8bab982d95ea376b5d829e8ec7d019a10142) Substitute "control-group" with "form-group" ### 📊 Changes **111 files changed** (+7818 additions, -922 deletions) <details> <summary>View changed files</summary> 📝 `modoboa/core/app_settings.py` (+35 -19) 📝 `modoboa/core/forms.py` (+9 -5) 📝 `modoboa/core/models.py` (+2 -2) 📝 `modoboa/core/static/core/css/userprefs.css` (+0 -9) 📝 `modoboa/core/templates/core/parameters.html` (+1 -1) 📝 `modoboa/core/templates/core/settings_header.html` (+1 -1) 📝 `modoboa/core/templates/core/user_index.html` (+1 -1) 📝 `modoboa/core/templates/core/user_preferences.html` (+1 -1) 📝 `modoboa/core/templates/core/user_profile.html` (+1 -1) 📝 `modoboa/core/templatetags/core_tags.py` (+5 -5) 📝 `modoboa/extensions/admin/app_settings.py` (+3 -2) 📝 `modoboa/extensions/admin/forms/account.py` (+19 -8) 📝 `modoboa/extensions/admin/forms/alias.py` (+4 -2) 📝 `modoboa/extensions/admin/forms/domain.py` (+7 -3) 📝 `modoboa/extensions/admin/forms/export.py` (+9 -3) 📝 `modoboa/extensions/admin/forms/forward.py` (+1 -1) 📝 `modoboa/extensions/admin/forms/import_.py` (+5 -2) 📝 `modoboa/extensions/admin/models/alias.py` (+1 -1) 📝 `modoboa/extensions/admin/models/domain.py` (+1 -1) 📝 `modoboa/extensions/admin/static/admin/css/settings.css` (+0 -1) _...and 80 more files_ </details> ### 📄 Description This branch contains the new template using bootstrap 3.2. The web application has now a full responsive design. Tested on iPad, Android smartphones and desktop browsers. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-02-27 11:20:24 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/modoboa-modoboa#1975
No description provided.