mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(models.package_source): fix primary key constraints
Signed-off-by: Kevin Morris <kevr@0cost.org>
This commit is contained in:
parent
22093c5c38
commit
5142447b7e
3 changed files with 12 additions and 5 deletions
|
@ -45,14 +45,14 @@
|
|||
</div>
|
||||
|
||||
<div id="pkgfiles" class="listing">
|
||||
<h3>Sources ({{ sources.count() }})</h3>
|
||||
<h3>Sources ({{ sources | length }})</h3>
|
||||
</div>
|
||||
|
||||
<div>
|
||||
<ul id="pkgsrcslist">
|
||||
{% for source in sources.all() %}
|
||||
{% for src in sources %}
|
||||
<li>
|
||||
<a href="{{ source.Source }}">{{ source.Source }}</a>
|
||||
<a href="{{ src.Source }}">{{ src.Source }}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue