Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
AlekSIS-App-Kort
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlekSIS®
Onboarding
AlekSIS-App-Kort
Merge requests
!3
Setup printer stuff
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Setup printer stuff
feature/printers
into
main
Overview
0
Commits
10
Pipelines
5
Changes
17
Merged
Jonathan Weth
requested to merge
feature/printers
into
main
3 years ago
Overview
0
Commits
10
Pipelines
5
Changes
17
Expand
0
0
Merge request reports
Viewing commit
506f6c2d
Prev
Next
Show latest version
17 files
+
519
−
26
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
17
Search (e.g. *.vue) (Ctrl+P)
Verified
506f6c2d
Add basic printer management including API views for submitting printer status
· 506f6c2d
Jonathan Weth
authored
3 years ago
aleksis/apps/kort/templates/kort/printer/actions.html
0 → 100644
+
26
−
0
Options
{% load i18n %}
<div
id=
"detail-modal-{{ printer.pk }}"
class=
"modal"
>
<div
class=
"modal-content"
>
<h4>
{{ printer.name }}
</h4>
{% include "kort/printer/detail_content.html" %}
</div>
<div
class=
"modal-footer"
>
<a
href=
"#!"
class=
"modal-close waves-effect waves-green btn-flat"
>
<i
class=
"material-icons left iconify"
data-icon=
"mdi:close"
></i>
{% trans "Close" %}
</a>
</div>
</div>
<a
class=
"btn-flat waves-effect waves-green green-text modal-trigger"
href=
"#detail-modal-{{ printer.pk }}"
>
<i
class=
"material-icons left iconify"
data-icon=
"mdi:play-box-outline"
></i>
{% trans "Show" %}
</a>
<a
class=
"btn-flat waves-effect waves-orange orange-text modal-trigger"
href=
"{% url "
edit_card_printer
"
printer.pk
%}"
>
<i
class=
"material-icons left iconify"
data-icon=
"mdi:pencil-outline"
></i>
{% trans "Edit" %}
</a>
<a
class=
"btn-flat waves-effect waves-red red-text modal-trigger"
href=
"{% url "
delete_card_printer
"
printer.pk
%}"
>
<i
class=
"material-icons left iconify"
data-icon=
"mdi:delete-outline"
></i>
{% trans "Delete" %}
</a>
\ No newline at end of file
Loading