Commit 99731dccda7b2db6335fb3f8df38042d53d0e67d
1 parent
df44065c
Exists in
master
and in
3 other branches
Adjusting profile functions presentation
Showing
2 changed files
with
13 additions
and
5 deletions
Show diff stats
amadeus/static/css/base/amadeus.css
... | ... | @@ -798,4 +798,12 @@ ul, li { |
798 | 798 | |
799 | 799 | #panel2 .col-md-2, #panel2 .col-md-10{ |
800 | 800 | padding-left: 0; |
801 | -} | |
802 | 801 | \ No newline at end of file |
802 | +} | |
803 | + | |
804 | +/* Profile */ | |
805 | +.profile_function { | |
806 | + padding-bottom: 7px; | |
807 | + font-size: 16px; | |
808 | + border-bottom: 1px solid #D2D2D2; | |
809 | +} | |
810 | +/* End Profile */ | |
803 | 811 | \ No newline at end of file | ... | ... |
users/templates/users/profile.html
... | ... | @@ -38,19 +38,19 @@ |
38 | 38 | <div class="col-md-9"> |
39 | 39 | <div class="form-group"> |
40 | 40 | <label class="control-form">{% trans 'System Admin' %}:</label> |
41 | - <input type="text" readonly="readonly" class="form-control" value="{{ user.is_admin }}" /> | |
41 | + <p class="profile_function">{{ user.is_admin }}</p> | |
42 | 42 | </div> |
43 | 43 | <div class="form-group"> |
44 | 44 | <label class="control-form">{% trans 'Coordinator in' %}:</label> |
45 | - <input type="text" readonly="readonly" class="form-control" value="{{ user|is_coordinator }}" /> | |
45 | + <p class="profile_function">{{ user|is_coordinator }}</p> | |
46 | 46 | </div> |
47 | 47 | <div class="form-group"> |
48 | 48 | <label class="control-form">{% trans 'Professor in' %}:</label> |
49 | - <input type="text" readonly="readonly" class="form-control" value="{{ user|is_professor }}" /> | |
49 | + <p class="profile_function">{{ user|is_professor }}</p> | |
50 | 50 | </div> |
51 | 51 | <div class="form-group"> |
52 | 52 | <label class="control-form">{% trans 'Student in' %}:</label> |
53 | - <input type="text" readonly="readonly" class="form-control" value="{{ user|is_student }}" /> | |
53 | + <p class="profile_function">{{ user|is_student }}</p> | |
54 | 54 | </div> |
55 | 55 | </div> |
56 | 56 | </div> | ... | ... |