Giter Club home page Giter Club logo

resume_app's Introduction

resume_app

Hi there. This is the a Django app that helps you to digitize your resume. With any luck, you will stand out in a round and land your dream job

resume_app's People

Contributors

bezunesh avatar bobby-didcoding avatar hellopratiksingh avatar nandinichhajed avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

resume_app's Issues

Blog post without a picture results in ValueError

When posting a blog post without a picture, Django crashes with ValueError: The 'image' attribute has no file associated with it.
Maybe worth checking if a picture is present to display it or not, or otherwise display something else?
file: blog.html

all skills are not showing on the home page

Hey Bobby, I'm fairly new to django, I've followed the entire tutorial and also fixed some bugs. But I am unable to figure out why all the skills are not showing in the home page. Please help me out !
2023-05-15_22-52_1
2023-05-15_22-52

Coding Skills Showing Key Skills On index.html template

Hi Bobby! First of all, thank's so much for the awesome content.

Also, as I was testing the page on my local machine, I believe I've fund a tiny error in the index.html template, as follows:

<section>
  <div class="sectionSpace pt-0">
    <div class="container">
      <div class="row">
        <div class="col-md-auto">
          <div class="keySkillCol">
            <h4 class="smTitle pb-3">Key Skills</h4>
            {% for sk in me.userprofile.skills.all %}
            {% if sk.is_key_skill %}
            <div class="keySkillCard">
              {% if sk.image %}
              <div class="ksIconCol">
                <img src="{{sk.image.url}}" alt="...">
              </div>
              {% endif %}
              <span class="ksText">{{sk.name}}</span>
            </div>
            {% endif %}
            {% endfor %}
          </div>
        </div>
        <div class="col-md">
          <h4 class="smTitle pb-3">Coding Skills</h4>
          <div class="progressCol">
            <div class="progressCard">
              {% for sk in me.userprofile.skills.all %}
              {% if sk.is_key_skill %}
              <div class="progressCol">
                <span class="progressLbl">{{sk.name}}</span>
                <div class="row g-2 align-items-center">
                  <div class="col">
                    <div class="progress progressStyle">
                      <div class="progress-bar" role="progressbar" style="width: {{sk.score}}%" aria-valuenow="{{sk.score}}" aria-valuemin="0" aria-valuemax="100"></div>
                    </div>
                  </div>
                  <div class="col-auto">
                    <span class="pLbl">{{sk.score}}%</span>
                  </div>
                </div>
              </div>
              {% endif %}
              {% endfor %}
              
            </div>
          </div>
        </div>
      </div>
    </div>
  </div>
</section>

I believe we want to show the codding skills if they are not key skills, so I put a little not in the comparison:

...
<h4 class="smTitle pb-3">Coding Skills</h4>
          <div class="progressCol">
            <div class="progressCard">
              {% for sk in me.userprofile.skills.all %}
              {% if **not** sk.is_key_skill %}
... 

Hope this can help someone! Cheers!!

django.conf.urls.url() is removed in Django 4.0+

FYI, django.conf.urls.url() was deprecated in Django 3.0, and is removed in Django 4.0+.

in the urls.py:

  • remove: from django.conf.urls import url
  • in urlpatterns, use path() instead of url()

Error in index.html file

error at line 96

Hi, I'm getting these errors in index.html file, and I've copied the same code from the file here, no changes but I'm getting an error.

property value expected
{
"resource": "/h:/CodeCamp/Django/Resume_Project/resume_demo/main/templates/main/index.html",
"owner": "generated_diagnostic_collection_name#3",
"code": "css-propertyvalueexpected",
"severity": 8,
"message": "property value expected",
"source": "css",
"startLineNumber": 96,
"startColumn": 82,
"endLineNumber": 96,
"endColumn": 83
}

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.