Skip to content

Commit b8309fb

Browse files
authored
Fix incorrect conference slug in profile dashboard (#648)
Add .vscode to .gitignore
1 parent db766c2 commit b8309fb

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -87,4 +87,7 @@ qr_files/
8787
# mypy cache
8888
**/.mypy_cache
8989

90+
#VSCode
91+
.vscode/
92+
9093
tmp/

junction/templates/profiles/dashboard.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ <h1>Your Proposals</h1>
3434
<br>
3535
{% if conf_proposals %}
3636
{% for conference,proposals in conf_proposals.items %}
37-
<h3><a href="{% url 'proposals-list' conference|slugify %}">{{ conference }}</a></h3>
37+
<h3><a href="{% url 'proposals-list' proposals.0.conference.slug %}">{{ conference }}</a></h3>
3838
{% for proposal in proposals %}
3939
<div class="row user-proposals proposal" data-type="{{proposal.proposal_type}}" data-comment="{{proposal|reviewer_comments:request.user}}">
4040
<div class="col-xs-12" >

0 commit comments

Comments
 (0)