mirror of https://github.com/eyhc1/rendercv.git
data_models: fix missing location (#54)
This commit is contained in:
parent
086e064154
commit
9a5440f36c
|
@ -931,6 +931,15 @@ class CurriculumVitae(RenderCVBaseModel):
|
|||
"placeholder": website_placeholder,
|
||||
}
|
||||
)
|
||||
if self.location is not None:
|
||||
connections.append(
|
||||
{
|
||||
"latex_icon": "\\faMapMarker*",
|
||||
"url": None,
|
||||
"clean_url": None,
|
||||
"placeholder": self.location,
|
||||
}
|
||||
)
|
||||
|
||||
if self.social_networks is not None:
|
||||
icon_dictionary = {
|
||||
|
|
Loading…
Reference in New Issue