-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into TV3/published-views-and-tombstones
- Loading branch information
Showing
6 changed files
with
56 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
37 changes: 37 additions & 0 deletions
37
designsafe/apps/workspace/migrations/0010_alter_applistingentry_options_and_more.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
# Generated by Django 4.2.11 on 2024-04-26 19:18 | ||
|
||
from django.db import migrations, models | ||
import django.db.models.functions.comparison | ||
|
||
|
||
class Migration(migrations.Migration): | ||
dependencies = [ | ||
("workspace", "0009_alter_applistingentry_icon"), | ||
] | ||
|
||
operations = [ | ||
migrations.AlterModelOptions( | ||
name="applistingentry", | ||
options={ | ||
"ordering": ["is_popular", "label"], | ||
"verbose_name_plural": "App Listing Entries", | ||
}, | ||
), | ||
migrations.AlterModelOptions( | ||
name="appvariant", | ||
options={ | ||
"ordering": [ | ||
"priority", | ||
django.db.models.functions.comparison.Coalesce("label", "app_id"), | ||
] | ||
}, | ||
), | ||
migrations.AddField( | ||
model_name="appvariant", | ||
name="priority", | ||
field=models.IntegerField( | ||
default=0, | ||
help_text="App variant priority, rendered in ascending order.", | ||
), | ||
), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
4 changes: 4 additions & 0 deletions
4
designsafe/apps/workspace/templates/designsafe/apps/workspace/related_apps_plugin.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,10 @@ | ||
{% if listing|length > 0 %} | ||
<h2>Related Applications</h2> | ||
<section class="o-app-grid"> | ||
{% for app in listing %} | ||
{% include "designsafe/apps/workspace/app_card.html" with app=app %} | ||
{% endfor %} | ||
</section> | ||
{% else %} | ||
<!-- No related apps --> | ||
{% endif %} |
1 change: 0 additions & 1 deletion
1
designsafe/static/vendor/httpi/example/vendor/angular-1.2.16.min.js
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.