made some changes to profile view

This commit is contained in:
EgertM
2017-10-08 22:53:01 +03:00
parent 3a37ce9988
commit b0200aa6c1
3 changed files with 102 additions and 111 deletions

2
.idea/challenges.iml generated
View File

@@ -12,7 +12,7 @@
</component> </component>
<component name="NewModuleRootManager"> <component name="NewModuleRootManager">
<content url="file://$MODULE_DIR$" /> <content url="file://$MODULE_DIR$" />
<orderEntry type="inheritedJdk" /> <orderEntry type="jdk" jdkName="Python 3.6.3 (C:\Users\Egert\AppData\Local\Programs\Python\Python36\python.exe)" jdkType="Python SDK" />
<orderEntry type="sourceFolder" forTests="false" /> <orderEntry type="sourceFolder" forTests="false" />
</component> </component>
<component name="TemplatesService"> <component name="TemplatesService">

2
.idea/misc.xml generated
View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="UTF-8"?> <?xml version="1.0" encoding="UTF-8"?>
<project version="4"> <project version="4">
<component name="ProjectRootManager" version="2" project-jdk-name="Python 3.5.3 (/usr/bin/python3.5)" project-jdk-type="Python SDK" /> <component name="ProjectRootManager" version="2" project-jdk-name="Python 3.6.3 (C:\Users\Egert\AppData\Local\Programs\Python\Python36\python.exe)" project-jdk-type="Python SDK" />
</project> </project>

View File

@@ -20,52 +20,16 @@
</div> </div>
<div class="row container section"> <div class="row container section">
<div class="col s12 m3" style="height:600px;padding-top: 10px;"> <div class="col s12 m12 l12">
<div> <h2 class="header center-align">{{ user.username }}</h2>
<div class="card" style="width: 450px;height:570px; border-radius: 4px;"> <div class="card horizontal" style="width:100%;">
<div class="image"> <div class="card-image">
<img style="height: 450px;border-radius: 4px;" src="/media/{{ user.profile.icon }}"> <img src="/media/{{ user.profile.icon }}">
<br><br>
<div class="row">
<div class="col s12 m1">
<i class="material-icons" style="font-size: 25px; padding-left: 7px">flash_on</i>
</div> </div>
<div class="col s12 m10"> <div class="card-stacked">
<div class="progress" style="background-color: #f1f1f1"> <div class="card-content">
<div class="determinate" style="width: 30%; background-color:#ffc107;"></div>
</div>
</div>
<div class="col s12 m1" >
<span style="color: #ffc107">3</span>
</div>
</div>
<div class="row">
<div class="col s12 m1">
<i class="material-icons" style="font-size: 25px; padding-left: 7px">computer</i>
</div>
<div class="col s12 m10">
<div class="progress" style="background-color: #f1f1f1">
<div class="determinate" style="width: 70%; background-color:#3498db;"></div>
</div>
</div>
<div class="col s12 m1">
<span style="color:#3498db">7</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div class="col s12 m2">
</div>
<div class="col s12 m3 l3" >
<h2 class="center-align" style="font-weight:bold;font-size: 50px;">{{ user.username }}<br></h2>
<div class="card" style="width:700px;background-color: #34495e;border-radius: 5px;margin: auto 0">
<div class="card-content white-text">
<span class="card-title" style="font-weight: bold">Description</span> <span class="card-title" style="font-weight: bold">Description</span>
<p style="font-size: 18px;">I am a very simple man. I am good at processing small bits of information. <p style="font-size: 18px;text-align: justify">I am a very simple man. I am good at processing small bits of information.
I am convenient because I require little food to function effectively.</p><br> I am convenient because I require little food to function effectively.</p><br>
<span class="card-title" style="font-weight: bold">Challenges completed</span> <span class="card-title" style="font-weight: bold">Challenges completed</span>
<ul> <ul>
@@ -76,6 +40,33 @@
{% endfor %} {% endfor %}
</ul> </ul>
</div> </div>
<div class="row">
<div class="col s1 m1 l1">
<i class="material-icons" style="font-size: 20px;padding-left:10%;">flash_on</i>
</div>
<div class="col s9 m9 l10">
<div class="progress" style="background-color: #f1f1f1;width:100%;">
<div class="determinate" style="width: 30%; background-color:#ffc107;"></div>
</div>
</div>
<div class="col s1 m1 l1" >
<span style="color: #ffc107;margin: 0 auto;margin-right:10px;">3</span>
</div>
</div>
<div class="row">
<div class="col s1 m1 l1">
<i class="material-icons" style="font-size: 20px;padding-left:10%">computer</i>
</div>
<div class="col s9 m19 l10">
<div class="progress" style="background-color: #f1f1f1;width:100%">
<div class="determinate" style="width: 70%; background-color:#3498db;"></div>
</div>
</div>
<div class="col s1 m1 l1">
<span style="color:#3498db;margin:0 auto;margin-right:10px;">7</span>
</div>
</div>
</div>
</div> </div>
</div> </div>
</div> </div>