summaryrefslogtreecommitdiffstats
path: root/app/view/common (unfollow)
AgeCommit message (Collapse)AuthorFilesLines
2016-10-22Deprecate application codeMalf Furious8-736/+0
Setup to perform an iteration of development focused on a simpler implementation and eliminating redundancy in design.
2016-09-17Finish markup for setting modal group tabMalf Furious1-9/+30
2016-09-17Revert "Revert "Update group setting tab to use parameterized view templates""Malf Furious1-2/+5
This reverts commit cc285f5d019e5b586931a2a582374074825de947.
2016-09-17Revert "Update group setting tab to use parameterized view templates"Malf Furious1-5/+2
This reverts commit ee3b66018804b332ec2a2953a1d04b7e0beb68fa.
2016-09-17Update group setting tab to use parameterized view templatesMalf Furious1-2/+5
2016-09-17Change ownership view template into a PHP functionMalf Furious1-12/+14
2016-09-17Change permissions view template into a PHP functionMalf Furious1-50/+52
This change will allow us to use this in different contextes, even on a single page render.
2016-09-15Commit work on setting modal groups tabMalf Furious1-1/+52
I am committing this change incomplete. I'm stopping work on this particular piece to save some work overall and explore view templating using PHP features. The idea is to define this markup once in just one file, rather than having to duplicate it for each object type.
2016-09-15Add view template for transferring the owner of an objectMalf Furious1-0/+33
2016-09-14Add view template for setting object permissionsMalf Furious1-0/+80
This view template can be included from object setting tab view to display controls for adjusting object permissions.
2016-06-12Add group tab to setting modalMalf Furious2-0/+31
Created empty <div> for the group setting tab. Also added code to the common model for initializing the $mod->group variable and setting a flag marking what tabs to include in the setting modal (group tab in this case). Added logic to the main setting modal view file for picking up these flags and including appropriate additional content.
2016-06-12Update setting modal to use functions added in previous commitMalf Furious1-2/+2
2016-06-12Add refresh btn to Scrott navbarMalf Furious1-0/+2
2016-06-11Add navbar dropdown for selecting group page to viewMalf Furious1-0/+12
2016-06-01Update newgroup modalMalf Furious1-1/+1
Made the name field (the only field) on this form as required.
2016-06-01Add modal view to create a new user groupMalf Furious2-0/+61
2016-05-29Add copyright notice to application view filesMalf Furious4-0/+72
2016-05-22Add delete account button to all users panelsMalf Furious1-0/+11
Added button for admins to remove any user account
2016-05-21Add 'Delete Account' button to user settings formMalf Furious1-0/+5
Links to a confirmation page which will require the user's current password to succeed.
2016-05-01Update setting modal to allow admins to remove other users' head imagesMalf Furious1-1/+1
2016-05-01Update setting modal to allow user to remove their own head imageMalf Furious1-1/+1
2016-05-01Update form handler for common/setting-modal, all users tabMalf Furious1-2/+2
Now supports file upload to replace the user's head image
2016-05-01Update form handler for common/setting-modal, user tabMalf Furious1-2/+2
Now supports file upload to replace the user's head image
2016-05-01Add view markup for showing user head images to the all users collapse panesMalf Furious1-7/+31
2016-05-01Update setting modal, user tab to display user head imageMalf Furious1-11/+36
Also restructured the web form a little and added the form-group to select a new image to upload
2016-03-27Add collapsable panel for editing each user's settings to admin setting tabMalf Furious1-0/+62
Also, added relevant initialization code to common model
2016-03-27Fix maxlengths for fields on user objectsMalf Furious1-5/+5
Usernames, aliai, and email addresses are capped at 50 chars in the backend
2016-03-27Fix <label>s and <input>s that use unnecessary DOM IDsMalf Furious1-14/+14
I dont need to give these elements IDs, so I'm not going to
2016-03-27Add view for setting modal, all users admin tabMalf Furious1-1/+53
2016-03-27Move getUserGlyphicon function from common model into user classMalf Furious1-1/+1
2016-03-27Alter representation of form boolean valuesMalf Furious1-2/+2
Changed how Form() objects model true and false for boolean fields. Was "true" and "false", is now "1" and "0", respectivly. This is to address how Mysql handles these values as they are pushed to the db.
2016-03-27Populate admin setting fields on page loadMalf Furious1-4/+4
Added logic to set initial state of fields on the setting modal's admin tab
2016-03-27Add view for Setting modal, admin tabMalf Furious1-1/+39
2016-03-27Add User settings tab for Setting modalMalf Furious1-5/+82
This commit adds the basic structure to the Setting modal in Common MVC. The meat of this commit is the content for the webform for the modal's form for user account settings. The next commit should implement form submission handling.
2016-03-27Only include the Setting modal if currently logged inMalf Furious1-1/+3
This prevents sending un-necessary HTML to the client on login/signup pages and allows code on the setting modal to assume that getCurrentUser() will always return an object.
2016-03-27Add settings modal to Common MVCMalf Furious2-0/+27
This modal dialog will be used to change app and object settings from any page in the app. The link to open it is added to the user button menu.
2016-03-27Update application navbarMalf Furious1-1/+14
The navbar now has a different view when logged in. I added the 'user button' which shows alert info and has a menu. Currently, the only menu item is 'Log out'.
2016-01-03* Start of application navbarMalf Furious2-0/+27
* Digested some example code
2016-01-02+ Adding initial view files for common MVCMalf Furious3-0/+3